Advertisement
Guest User

Untitled

a guest
May 24th, 2019
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.36 KB | None | 0 0
  1. <div id="myDIV" class="header">
  2.   <h2>My To Do List</h2>
  3.   <input type="text" id="myInput" placeholder="Title...">
  4.   <span onclick="newElement()" class="addBtn">Add</span>
  5. </div>
  6.  
  7. <ul id="myUL">
  8.   <li>Hit the gym</li>
  9.   <li class="checked">Pay bills</li>
  10.   <li>Meet George</li>
  11.   <li>Buy eggs</li>
  12.   <li>Read a book</li>
  13.   <li>Organize office</li>
  14. </ul>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement