Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Simple Todo Application</title> | |
| <meta name="description" content="A simple, vanilla JavaScript Todo list application with add, delete, and complete functionality."> | |
| <meta name="keywords" content="todo, list, javascript, html, css, vanilla js, productivity"> | |
| <link rel="stylesheet" href="assets/css/styles.css"> | |
| <!-- Optional: Google Fonts for better typography --> | |
| <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet"> | |
| </head> | |
| <body> | |
| <header class="main-header"> | |
| <h1>Vanilla JS Todo App</h1> | |
| <p> | |
| Built with <a href="https://huggingface.co/spaces/akhaliq/anycoder" target="_blank" rel="noopener noreferrer">anycoder</a> | |
| </p> | |
| </header> | |
| <main class="container"> | |
| <section class="todo-input"> | |
| <form id="todo-form"> | |
| <input type="text" id="todo-input" placeholder="What needs to be done?" required aria-label="New Todo Item"> | |
| <button type="submit" id="add-btn">Add Todo</button> | |
| </form> | |
| </section> | |
| <section class="todo-list-container"> | |
| <h2>My Tasks</h2> | |
| <ul id="todo-list"> | |
| <!-- Todo items will be inserted here by JavaScript --> | |
| </ul> | |
| <p id="empty-message" class="empty-message hidden">No tasks yet! Add one above.</p> | |
| </section> | |
| </main> | |
| <footer> | |
| <p>© 2024 Simple Todo App. All Rights Reserved.</p> | |
| </footer> | |
| <script src="assets/js/script.js" defer></script> | |
| </body> | |
| </html> |