Advertisement
poctek

index.html

Nov 21st, 2014
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.50 KB | None | 0 0
  1. <html>
  2.   <head>
  3.     <title>To Do</title>
  4.     <link rel="stylesheet" type="text/css" href="styles.css">
  5.   </head>
  6.   <body>
  7.     <div id="wrapper">
  8.     <div id="header"><h1>To Do List</h1></div>
  9.       <div id="addBlock">
  10.         <input type="input" id="textfield" placeholder="Write something!">
  11.         <!--<input type="button" id="submit" value="add">-->
  12.       </div>
  13.       <div id="list">
  14.         <ul id="listTag"></ul>
  15.       </div>
  16.     </div>
  17.     <script src="script.js"></script>
  18.   </body>
  19. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement