Advertisement
Guest User

Untitled

a guest
Jan 12th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. <head>
  2. <title>Todo app</title>
  3. <meta charset="UTF-8">
  4. <meta name="description" content="todo list in vanilla js">
  5. <meta name="keywords" content="todo list, vanillajs, chuksFestus, chuks festus">
  6. <meta name="author" content="Chuks festus">
  7. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  8. <link rel="stylesheet" href="style.css">
  9. </head>
  10. <body>
  11. <div class="container">
  12. <h1>My to-do list</h1>
  13. <div class="input">
  14. <input id="task" type="text" placeholder="enter task">
  15. <button id="add">add</button>
  16. </div>
  17. <hr>
  18. <div id="todos">
  19.  
  20. </div>
  21. </div>
  22. <script src="script.js"></script>
  23. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement