Guest User

Untitled

a guest
Feb 16th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. <section>
  2. <h1>TO DO LIST</h1>
  3. <div class="todoapp">
  4. <header class="header">
  5. <input class="new-todo"
  6. autofocus autocomplete="off"
  7. placeholder="What's on your Mind?">
  8. </header>
  9. <section class="main">
  10. <ul class="todo-list">
  11. <li>
  12. <div class="view">
  13. <input class="toggle" type="checkbox">
  14. <label> Placeholder TEXT </label>
  15. <button class="destroy"></button>
  16. </div>
  17. </li>
  18. </ul>
  19. </section>
  20. </div>
  21. </section>
Add Comment
Please, Sign In to add comment