| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>MathTime Equation Clock ⏳</title> |
| <link rel="stylesheet" href="style.css"> |
| <script src="https://cdn.tailwindcss.com"></script> |
| <script src="https://unpkg.com/feather-icons"></script> |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> |
| </head> |
| <body class="bg-gray-900 min-h-screen flex flex-col"> |
| <custom-navbar></custom-navbar> |
| |
| <main class="flex-grow flex items-center justify-center p-4"> |
| <div class="clock-container bg-gray-800 rounded-2xl p-8 shadow-2xl"> |
| <h1 class="text-center text-3xl font-bold text-purple-400 mb-8">MathTime ⏰</h1> |
| <div class="clock-face grid grid-cols-3 gap-6"> |
| |
| <div class="hour-digit bg-gray-700 rounded-xl p-4 shadow-lg"> |
| <div class="equation text-center text-2xl font-mono text-green-300"></div> |
| <div class="label text-center text-sm text-gray-400 mt-2">HOURS</div> |
| </div> |
| |
| |
| <div class="minute-digit bg-gray-700 rounded-xl p-4 shadow-lg"> |
| <div class="equation text-center text-2xl font-mono text-blue-300"></div> |
| <div class="label text-center text-sm text-gray-400 mt-2">MINUTES</div> |
| </div> |
| |
| |
| <div class="second-digit bg-gray-700 rounded-xl p-4 shadow-lg"> |
| <div class="equation text-center text-2xl font-mono text-yellow-300"></div> |
| <div class="label text-center text-sm text-gray-400 mt-2">SECONDS</div> |
| </div> |
| </div> |
| |
| <div class="mt-8 text-center text-gray-400"> |
| <p>Each number is represented by a mathematical equation!</p> |
| </div> |
| </div> |
| </main> |
| |
| <custom-footer></custom-footer> |
| |
| <script src="components/navbar.js"></script> |
| <script src="components/footer.js"></script> |
| <script src="script.js"></script> |
| <script>feather.replace();</script> |
| <script src="https://huggingface.co/deepsite/deepsite-badge.js"></script> |
| </body> |
| </html> |