Advertisement
Guest User

Untitled

a guest
May 24th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>TODO LIST</title>
  5. <link rel="stylesheet" type="text/css" href="css/style.css">
  6. </head>
  7. <body>
  8. <div id="container">
  9. <div id="header">
  10. <h1>Todo List</h1>
  11. </div>
  12. <div id="inputContainer">
  13. <input id="taskInput" type="text" placeholder="Add a task" maxlength="50" />
  14. </div>
  15. <div id="listWrapper">
  16. <ul id="taskList">
  17. </ul>
  18. </div>
  19. <div id="deleteBtnWrapper" >
  20. <button id="deleteCompletedBtn" onclick="deleteCompleted()">Delete Completed</button>
  21. <button id="clearTasksBtn" onclick="deleteAll()">Clear</button>
  22. </div>
  23. </div>
  24. <script src="js/todo.js"></script>
  25. </body>
  26. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement