Advertisement
Guest User

Untitled

a guest
Oct 24th, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.09 KB | None | 0 0
  1.  
  2. <!DOCTYPE html>
  3. <html>
  4. <head>
  5.  
  6. <meta charset="utf-8">
  7. <title>ToDoIt</title>
  8.  
  9. <!-- This is a 3rd-party stylesheet for Font Awesome: http://fontawesome.io/ -->
  10. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" media="screen">
  11.  
  12. <link rel="stylesheet" href="style.css" media="screen">
  13.  
  14. </head>
  15. <body>
  16.  
  17. <header>
  18.  
  19. <!-- The <i> tag below includes the sticky note icon from Font Awesome -->
  20. <h1><a href="/"><i class="fa fa-sticky-note-o"></i> ToDoIt</a></h1>
  21.  
  22. <nav>
  23. <ul class="navbar-list">
  24. <li class="navbar-item"><a href="/">Home</a></li>
  25. <li class="navbar-item"><a href="/about">About</a></li>
  26. <li class="navbar-item navbar-right"><a href="#">Log out</a></li>
  27. </ul>
  28. </nav>
  29.  
  30. </header>
  31.  
  32. <main>
  33.  
  34. <section class="todo">
  35. <h2>buy groceries</h2>
  36. <div class="todo-body">
  37. <ul class="todo-list">
  38. <li>milk</li>
  39. <li>tea</li>
  40. <li>flour</li>
  41. <li>bananas</li>
  42. </ul>
  43. </div>
  44. <div class="dismiss-button">&times;</div>
  45. </section>
  46.  
  47. <section class="todo">
  48. <h2>grab a beer with Chris</h2>
  49. <div class="todo-body">
  50. <p class="indent-wrapped"><span class="where">where: </span>Squirrels</p>
  51. <p class="indent-wrapped"><span class="when">when: </span>Thursday 9/29, 4:00</p>
  52. </div>
  53. <div class="dismiss-button">&times;</div>
  54. </section>
  55.  
  56. <section class="todo">
  57. <h2>take out the trash</h2>
  58. <div class="todo-body">
  59. <p class="indent-wrapped"><span class="when">when: </span>Monday Night</p>
  60. </div>
  61. <div class="dismiss-button">&times;</div>
  62. </section>
  63.  
  64. <section class="todo">
  65. <h2>call the bank re: loan</h2>
  66. <div class="todo-body">
  67. <p class="indent-wrapped"><span class="who">who: </span>Betty</p>
  68. <p>541-757-1111</p>
  69. </div>
  70. <div class="dismiss-button">&times;</div>
  71. </section>
  72.  
  73. <section class="todo">
  74. <h2>paint the bedroom</h2>
  75. <div class="todo-body">
  76. <p>probably need 2 gallons (polar-bear-in-a-blizzard white)</p>
  77. </div>
  78. <div class="dismiss-button">&times;</div>
  79. </section>
  80.  
  81. <div class="add-note-button-container">
  82. <button id="add-note-button">+</button>
  83. </div>
  84.  
  85. </main>
  86.  
  87. <footer>
  88. <div class="copyright">
  89. Copyright &copy; 2016
  90. </div>
  91. </footer>
  92.  
  93. <div id="modal-backdrop" class="hidden"></div>
  94. <div id="add-note-modal" class="hidden">
  95. <div class="modal-dialog">
  96.  
  97. <div class="modal-header">
  98. <h3>Add a ToDo</h3>
  99. <button type="button" class="modal-close-button">&times;</button>
  100. </div>
  101.  
  102. <div class="modal-body">
  103. <div class="todo-input-element required">
  104. <label for="todo-input-what">What</label>
  105. <input type="text" id="todo-input-what">
  106. </div>
  107. <div class="todo-input-element">
  108. <label for="todo-input-where">Where</label>
  109. <input type="text" id="todo-input-where">
  110. </div>
  111. <div class="todo-input-element">
  112. <label for="todo-input-when">When</label>
  113. <input type="text" id="todo-input-when">
  114. </div>
  115. <div class="todo-input-element">
  116. <label for="todo-input-who">Who</label>
  117. <input type="text" id="todo-input-who">
  118. </div>
  119. <div class="todo-input-element">
  120. <label for="todo-input-details">Details</label>
  121. <textarea id="todo-input-details"></textarea>
  122. </div>
  123. </div>
  124.  
  125. <div class="modal-footer">
  126. <button type="button" class="modal-cancel-button">Cancel</button>
  127. <button type="button" class="modal-accept-button">Add ToDo</button>
  128. </div>
  129.  
  130. </div>
  131. </div>
  132.  
  133. </body>
  134.  
  135. <script src="index.js"></script>
  136.  
  137. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement