Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>English Practice Tests</title> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> | |
| <style> | |
| .exam-card:hover { | |
| transform: translateY(-5px); | |
| box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); | |
| } | |
| .progress-ring__circle { | |
| transition: stroke-dashoffset 0.5s; | |
| transform: rotate(-90deg); | |
| transform-origin: 50% 50%; | |
| } | |
| </style> | |
| </head> | |
| <body class="bg-gray-50 min-h-screen"> | |
| <!-- Header --> | |
| <header class="bg-indigo-600 text-white shadow-lg"> | |
| <div class="container mx-auto px-4 py-6"> | |
| <div class="flex justify-between items-center"> | |
| <div class="flex items-center space-x-3"> | |
| <i class="fas fa-book-open text-2xl"></i> | |
| <h1 class="text-2xl font-bold">EnglishMaster</h1> | |
| </div> | |
| <div class="flex items-center space-x-4"> | |
| <div class="relative"> | |
| <i class="fas fa-bell text-xl cursor-pointer"></i> | |
| <span class="absolute -top-1 -right-1 h-4 w-4 bg-red-500 rounded-full text-xs flex items-center justify-center">3</span> | |
| </div> | |
| <div class="flex items-center space-x-2"> | |
| <img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Profile" class="h-8 w-8 rounded-full object-cover"> | |
| <span class="font-medium">Sarah</span> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </header> | |
| <!-- Main Content --> | |
| <main class="container mx-auto px-4 py-8"> | |
| <!-- Dashboard Overview --> | |
| <section class="mb-12"> | |
| <h2 class="text-3xl font-bold text-gray-800 mb-6">Practice Tests Dashboard</h2> | |
| <div class="grid grid-cols-1 md:grid-cols-4 gap-6 mb-8"> | |
| <!-- Progress Card --> | |
| <div class="bg-white rounded-xl shadow-md p-6 flex items-center"> | |
| <div class="relative w-16 h-16 mr-4"> | |
| <svg class="w-full h-full" viewBox="0 0 36 36"> | |
| <path | |
| d="M18 2.0845 | |
| a 15.9155 15.9155 0 0 1 0 31.831 | |
| a 15.9155 15.9155 0 0 1 0 -31.831" | |
| fill="none" | |
| stroke="#E5E7EB" | |
| stroke-width="3" | |
| /> | |
| <path | |
| class="progress-ring__circle" | |
| d="M18 2.0845 | |
| a 15.9155 15.9155 0 0 1 0 31.831 | |
| a 15.9155 15.9155 0 0 1 0 -31.831" | |
| fill="none" | |
| stroke="#4F46E5" | |
| stroke-width="3" | |
| stroke-dasharray="70, 100" | |
| /> | |
| </svg> | |
| <div class="absolute inset-0 flex items-center justify-center"> | |
| <span class="text-sm font-bold text-indigo-600">70%</span> | |
| </div> | |
| </div> | |
| <div> | |
| <h3 class="text-gray-500 text-sm font-medium">Overall Progress</h3> | |
| <p class="text-lg font-semibold text-gray-800">14/20 tests completed</p> | |
| </div> | |
| </div> | |
| <!-- Time Spent Card --> | |
| <div class="bg-white rounded-xl shadow-md p-6 flex items-center"> | |
| <div class="w-16 h-16 mr-4 bg-indigo-100 rounded-full flex items-center justify-center"> | |
| <i class="fas fa-clock text-indigo-600 text-xl"></i> | |
| </div> | |
| <div> | |
| <h3 class="text-gray-500 text-sm font-medium">Time Spent</h3> | |
| <p class="text-lg font-semibold text-gray-800">12h 45m</p> | |
| </div> | |
| </div> | |
| <!-- Streak Card --> | |
| <div class="bg-white rounded-xl shadow-md p-6 flex items-center"> | |
| <div class="w-16 h-16 mr-4 bg-yellow-100 rounded-full flex items-center justify-center"> | |
| <i class="fas fa-fire text-yellow-600 text-xl"></i> | |
| </div> | |
| <div> | |
| <h3 class="text-gray-500 text-sm font-medium">Current Streak</h3> | |
| <p class="text-lg font-semibold text-gray-800">7 days</p> | |
| </div> | |
| </div> | |
| <!-- Points Card --> | |
| <div class="bg-white rounded-xl shadow-md p-6 flex items-center"> | |
| <div class="w-16 h-16 mr-4 bg-green-100 rounded-full flex items-center justify-center"> | |
| <i class="fas fa-star text-green-600 text-xl"></i> | |
| </div> | |
| <div> | |
| <h3 class="text-gray-500 text-sm font-medium">Points Earned</h3> | |
| <p class="text-lg font-semibold text-gray-800">1,250 pts</p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Exam Sections --> | |
| <section> | |
| <div class="flex justify-between items-center mb-6"> | |
| <h2 class="text-2xl font-bold text-gray-800">Practice Exams</h2> | |
| <div class="relative"> | |
| <select class="appearance-none bg-white border border-gray-300 rounded-lg px-4 py-2 pr-8 text-gray-700 focus:outline-none focus:ring-2 focus:ring-indigo-500"> | |
| <option>All Levels</option> | |
| <option>Beginner</option> | |
| <option>Intermediate</option> | |
| <option>Advanced</option> | |
| </select> | |
| <div class="absolute inset-y-0 right-0 flex items-center px-2 pointer-events-none"> | |
| <i class="fas fa-chevron-down text-gray-400"></i> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6"> | |
| <!-- Listening Exam Card --> | |
| <div class="exam-card bg-white rounded-xl shadow-md overflow-hidden transition-all duration-300 cursor-pointer"> | |
| <div class="h-40 bg-blue-500 flex items-center justify-center"> | |
| <i class="fas fa-headphones text-white text-6xl"></i> | |
| </div> | |
| <div class="p-6"> | |
| <div class="flex justify-between items-start mb-3"> | |
| <h3 class="text-xl font-bold text-gray-800">Listening</h3> | |
| <span class="bg-blue-100 text-blue-800 text-xs font-medium px-2.5 py-0.5 rounded">12 tests</span> | |
| </div> | |
| <p class="text-gray-600 mb-4">Practice understanding spoken English in various accents and contexts.</p> | |
| <div class="flex justify-between items-center"> | |
| <div class="flex items-center"> | |
| <i class="fas fa-check-circle text-green-500 mr-2"></i> | |
| <span class="text-sm text-gray-600">5 completed</span> | |
| </div> | |
| <button class="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-lg text-sm font-medium transition-colors"> | |
| Start | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Reading Exam Card --> | |
| <div class="exam-card bg-white rounded-xl shadow-md overflow-hidden transition-all duration-300 cursor-pointer"> | |
| <div class="h-40 bg-green-500 flex items-center justify-center"> | |
| <i class="fas fa-book-open text-white text-6xl"></i> | |
| </div> | |
| <div class="p-6"> | |
| <div class="flex justify-between items-start mb-3"> | |
| <h3 class="text-xl font-bold text-gray-800">Reading</h3> | |
| <span class="bg-green-100 text-green-800 text-xs font-medium px-2.5 py-0.5 rounded">8 tests</span> | |
| </div> | |
| <p class="text-gray-600 mb-4">Improve reading comprehension with passages from various topics.</p> | |
| <div class="flex justify-between items-center"> | |
| <div class="flex items-center"> | |
| <i class="fas fa-check-circle text-green-500 mr-2"></i> | |
| <span class="text-sm text-gray-600">3 completed</span> | |
| </div> | |
| <button class="bg-green-600 hover:bg-green-700 text-white px-4 py-2 rounded-lg text-sm font-medium transition-colors"> | |
| Start | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Speaking Exam Card --> | |
| <div class="exam-card bg-white rounded-xl shadow-md overflow-hidden transition-all duration-300 cursor-pointer"> | |
| <div class="h-40 bg-purple-500 flex items-center justify-center"> | |
| <i class="fas fa-comment-dots text-white text-6xl"></i> | |
| </div> | |
| <div class="p-6"> | |
| <div class="flex justify-between items-start mb-3"> | |
| <h3 class="text-xl font-bold text-gray-800">Speaking</h3> | |
| <span class="bg-purple-100 text-purple-800 text-xs font-medium px-2.5 py-0.5 rounded">6 tests</span> | |
| </div> | |
| <p class="text-gray-600 mb-4">Practice pronunciation and fluency with interactive speaking exercises.</p> | |
| <div class="flex justify-between items-center"> | |
| <div class="flex items-center"> | |
| <i class="fas fa-check-circle text-green-500 mr-2"></i> | |
| <span class="text-sm text-gray-600">4 completed</span> | |
| </div> | |
| <button class="bg-purple-600 hover:bg-purple-700 text-white px-4 py-2 rounded-lg text-sm font-medium transition-colors"> | |
| Start | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Writing Exam Card --> | |
| <div class="exam-card bg-white rounded-xl shadow-md overflow-hidden transition-all duration-300 cursor-pointer"> | |
| <div class="h-40 bg-yellow-500 flex items-center justify-center"> | |
| <i class="fas fa-pen-fancy text-white text-6xl"></i> | |
| </div> | |
| <div class="p-6"> | |
| <div class="flex justify-between items-start mb-3"> | |
| <h3 class="text-xl font-bold text-gray-800">Writing</h3> | |
| <span class="bg-yellow-100 text-yellow-800 text-xs font-medium px-2.5 py-0.5 rounded">10 tests</span> | |
| </div> | |
| <p class="text-gray-600 mb-4">Improve writing skills with guided exercises and feedback.</p> | |
| <div class="flex justify-between items-center"> | |
| <div class="flex items-center"> | |
| <i class="fas fa-check-circle text-green-500 mr-2"></i> | |
| <span class="text-sm text-gray-600">2 completed</span> | |
| </div> | |
| <button class="bg-yellow-600 hover:bg-yellow-700 text-white px-4 py-2 rounded-lg text-sm font-medium transition-colors"> | |
| Start | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Recent Activity --> | |
| <section class="mt-12"> | |
| <h2 class="text-2xl font-bold text-gray-800 mb-6">Recent Activity</h2> | |
| <div class="bg-white rounded-xl shadow-md overflow-hidden"> | |
| <div class="overflow-x-auto"> | |
| <table class="min-w-full divide-y divide-gray-200"> | |
| <thead class="bg-gray-50"> | |
| <tr> | |
| <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Test</th> | |
| <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Type</th> | |
| <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Date</th> | |
| <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Score</th> | |
| <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Status</th> | |
| </tr> | |
| </thead> | |
| <tbody class="bg-white divide-y divide-gray-200"> | |
| <tr> | |
| <td class="px-6 py-4 whitespace-nowrap"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0 h-10 w-10 bg-blue-100 rounded-full flex items-center justify-center"> | |
| <i class="fas fa-headphones text-blue-600"></i> | |
| </div> | |
| <div class="ml-4"> | |
| <div class="text-sm font-medium text-gray-900">Travel Conversations</div> | |
| <div class="text-sm text-gray-500">Intermediate</div> | |
| </div> | |
| </div> | |
| </td> | |
| <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">Listening</td> | |
| <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">May 12, 2023</td> | |
| <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500"> | |
| <span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-green-100 text-green-800">85%</span> | |
| </td> | |
| <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500"> | |
| <i class="fas fa-check-circle text-green-500 mr-1"></i> Completed | |
| </td> | |
| </tr> | |
| <tr> | |
| <td class="px-6 py-4 whitespace-nowrap"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0 h-10 w-10 bg-green-100 rounded-full flex items-center justify-center"> | |
| <i class="fas fa-book-open text-green-600"></i> | |
| </div> | |
| <div class="ml-4"> | |
| <div class="text-sm font-medium text-gray-900">Science Article</div> | |
| <div class="text-sm text-gray-500">Advanced</div> | |
| </div> | |
| </div> | |
| </td> | |
| <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">Reading</td> | |
| <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">May 10, 2023</td> | |
| <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500"> | |
| <span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-yellow-100 text-yellow-800">72%</span> | |
| </td> | |
| <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500"> | |
| <i class="fas fa-check-circle text-green-500 mr-1"></i> Completed | |
| </td> | |
| </tr> | |
| <tr> | |
| <td class="px-6 py-4 whitespace-nowrap"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0 h-10 w-10 bg-purple-100 rounded-full flex items-center justify-center"> | |
| <i class="fas fa-comment-dots text-purple-600"></i> | |
| </div> | |
| <div class="ml-4"> | |
| <div class="text-sm font-medium text-gray-900">Job Interview</div> | |
| <div class="text-sm text-gray-500">Intermediate</div> | |
| </div> | |
| </div> | |
| </td> | |
| <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">Speaking</td> | |
| <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">May 8, 2023</td> | |
| <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500"> | |
| <span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-red-100 text-red-800">Incomplete</span> | |
| </td> | |
| <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500"> | |
| <i class="fas fa-exclamation-circle text-yellow-500 mr-1"></i> In Progress | |
| </td> | |
| </tr> | |
| </tbody> | |
| </table> | |
| </div> | |
| </div> | |
| </section> | |
| </main> | |
| <!-- Footer --> | |
| <footer class="bg-gray-800 text-white py-8 mt-12"> | |
| <div class="container mx-auto px-4"> | |
| <div class="grid grid-cols-1 md:grid-cols-4 gap-8"> | |
| <div> | |
| <h3 class="text-lg font-semibold mb-4">EnglishMaster</h3> | |
| <p class="text-gray-400">Master English with our comprehensive practice tests and learning resources.</p> | |
| </div> | |
| <div> | |
| <h3 class="text-lg font-semibold mb-4">Quick Links</h3> | |
| <ul class="space-y-2"> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Home</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Practice Tests</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Progress</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Resources</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h3 class="text-lg font-semibold mb-4">Support</h3> | |
| <ul class="space-y-2"> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Help Center</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Contact Us</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Feedback</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h3 class="text-lg font-semibold mb-4">Connect With Us</h3> | |
| <div class="flex space-x-4"> | |
| <a href="#" class="text-gray-400 hover:text-white transition-colors"> | |
| <i class="fab fa-facebook-f"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white transition-colors"> | |
| <i class="fab fa-twitter"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white transition-colors"> | |
| <i class="fab fa-instagram"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white transition-colors"> | |
| <i class="fab fa-youtube"></i> | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="border-t border-gray-700 mt-8 pt-8 text-center text-gray-400"> | |
| <p>© 2023 EnglishMaster. All rights reserved.</p> | |
| </div> | |
| </div> | |
| </footer> | |
| <script> | |
| // Simple script to demonstrate interactivity | |
| document.querySelectorAll('.exam-card').forEach(card => { | |
| card.addEventListener('click', function() { | |
| const examType = this.querySelector('h3').textContent; | |
| alert(`Starting ${examType} practice test!`); | |
| }); | |
| }); | |
| </script> | |
| <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=aops02/practice-page" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
| </html> |