Advertisement
Guest User

Untitled

a guest
Feb 27th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>To-Do List</title>
  6. <!--[if lt IE 9]>
  7. <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
  8. <![endif]-->
  9. <link rel="stylesheet" href="css/form.css">
  10. </head>
  11. <body>
  12. <!-- Script 6.5 - task.html -->
  13. <!-- <form action="#" method="post" id="theForm">-->
  14. <fieldset><legend>Enter an Item To Be Done</legend>
  15. <div><label for="task">Task</label><input type="text" name="task" id="task" required></div>
  16. <input type="submit" value="Add It!" id="submit">
  17. <div id="output"></div>
  18. </fieldset>
  19. <!-- </form>-->
  20. <script src="js/todo.js"></script>
  21. </body>
  22. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement