Spaces:
Sleeping
Sleeping
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Simple Chatbot</title> | |
| <meta name="description" content="A simple chatbot built with HTML, CSS, and JavaScript."> | |
| <meta name="keywords" content="chatbot, AI, web app"> | |
| <link rel="stylesheet" href="assets/css/styles.css"> | |
| </head> | |
| <body> | |
| <header> | |
| <h1>Simple Chatbot</h1> | |
| <p><a href="https://huggingface.co/spaces/akhaliq/anycoder" target="_blank">Built with anycoder</a></p> | |
| </header> | |
| <main> | |
| <div class="chat-container"> | |
| <div id="chat-messages" class="chat-messages"></div> | |
| <div class="chat-input-container"> | |
| <input type="text" id="user-input" placeholder="Type your message..." /> | |
| <button id="send-button">Send</button> | |
| </div> | |
| </div> | |
| </main> | |
| <script src="assets/js/script.js"></script> | |
| </body> | |
| </html> |