Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <meta name="description" content="Simple and elegant todo list application"> | |
| <title>Todo App</title> | |
| <link rel="stylesheet" href="style.css"> | |
| </head> | |
| <body> | |
| <div class="container"> | |
| <header> | |
| <h1>๐ Todo App</h1> | |
| <a href="https://huggingface.co/spaces/akhaliq/anycoder" target="_blank" class="credit">Built with anycoder</a> | |
| </header> | |
| <div class="input-section"> | |
| <input type="text" id="todoInput" placeholder="Add a new task..." /> | |
| <button id="addBtn">Add</button> | |
| </div> | |
| <ul id="todoList"></ul> | |
| </div> | |
| <script src="app.js"></script> | |
| </body> | |
| </html> |