Advertisement
Guest User

task2

a guest
Nov 16th, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.  
  4. <head>
  5. <meta charset="UTF-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  8. <title>ToDoB00tCamp</title>
  9. <link rel="stylesheet" type="text/css" href="./assets/css/style.css">
  10. </head>
  11.  
  12. <body>
  13. <header>
  14. <h1>Bootcamp To-Do List</h1>
  15. </header>
  16. <main>
  17. <section>
  18. <div>
  19. <input type="text" id='txt-title' placeholder="Title" />
  20. <input type="submit" id='btn-add' value="Add Task" />
  21. <input type="button" id='remove-selected-button' value="Remove Selected" />
  22. <input type="button" id='invert-selected-button' value="Invert Selected" />
  23. </div>
  24. </section>
  25. <section>
  26. <div id='tasks-container'>
  27.  
  28. </div>
  29. </section>
  30. </main>
  31. </body>
  32.  
  33. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement