Untitled
unknown
plain_text
10 months ago
596 B
1
Indexable
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>To-Do List App</title> <link rel="stylesheet" href="styles.css"> </head> <body> <div class="container"> <h1>My To-Do List</h1> <form id="todo-form"> <input type="text" id="new-task" placeholder="Add a new task" required> <button type="submit">Add Task</button> </form> <ul id="todo-list"></ul> </div> <script src="scripts.js"></script> </body> </html>
Editor is loading...
Leave a Comment