Advertisement
Guest User

index.html

a guest
Aug 20th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.43 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <!-- Content Type Meta tag -->
  5.         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  6.        
  7.         <!--Responsive Viewport Meta tag-->
  8.         <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
  9.        
  10.        
  11.         <title>Todo list app</title>
  12.        
  13.         <!-- Roboto font embed -->
  14.         <link href="https://fonts.googleapis.com/css?family=Roboto:400,500,700" rel="stylesheet">
  15.  
  16.         <!-- Stylesheets -->
  17.         <link rel="stylesheet" type="text/css" href="resources/css/reset.min.css">
  18.         <link rel="stylesheet" type="text/css" href="resources/css/style.css">
  19.     </head>
  20.     <body>
  21.  
  22.         <header>
  23.             <input type="text" placeholder="Enter an activity.." id="item">
  24.             <button id="add">
  25.                 <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"><g><path class="fill" d="M16,8c0,0.5-0.5,1-1,1H9v6c0,0.5-0.5,1-1,1s-1-0.5-1-1V9H1C0.5,9,0,8.5,0,8s0.5-1,1-1h6V1c0-0.5,0.5-1,1-1s1,0.5,1,1v6h6C15.5,7,16,7.5,16,8z"/></g></svg>
  26.             </button>
  27.         </header>
  28.  
  29.         <div class="container">
  30.             <!-- Uncompleted tasks -->
  31.             <ul class="todo" id="todo"></ul>
  32.  
  33.             <!-- Completed tasks -->
  34.             <ul class="todo" id="completed"></ul>
  35.         </div>
  36.  
  37.         <!-- JavaScripts -->
  38.         <script src="resources/js/main.js"></script>
  39.     </body>
  40. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement