| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <style> |
| body { |
| font-family: Arial, sans-serif; |
| background-color: #333; |
| color: #fff; |
| margin: 0; |
| padding: 0; |
| text-align: center; |
| } |
| |
| header { |
| background-color: #222; |
| padding: 20px 0; |
| } |
| |
| h1 { |
| color: #fff; |
| } |
| |
| .button { |
| display: inline-block; |
| background-color: #555; |
| color: #fff; |
| padding: 10px 20px; |
| text-decoration: none; |
| margin: 10px; |
| border-radius: 5px; |
| } |
| |
| .button:hover { |
| background-color: #777; |
| } |
| |
| footer { |
| background-color: #222; |
| padding: 10px 0; |
| position: absolute; |
| bottom: 0; |
| width: 100%; |
| } |
| |
| footer p { |
| font-size: 14px; |
| color: #888; |
| } |
| </style> |
| </head> |
| <body> |
| <header> |
| <h1>A N I M A: Toolkit</h1> |
| </header> |
| <a class="button" href="#" onclick="openLink('/chat.html')">Chat</a> |
| <a class="button" href="#" onclick="openLink('/image-creator.html')">Image Creator</a> |
| <a class="button" href="#" onclick="openLink('/text-to-speech.html')">Text to Speech</a> |
| <a class="button" href="#" onclick="openLink('/speech-to-text.html')">Speech to Text</a> |
| <footer> |
| <p>©️ ANIMA</p> |
| </footer> |
| <script> |
| function openLink(url) { |
| window.location.href = url; |
| } |
| </script> |
| </body> |
| </html> |
|
|