Advertisement
Guest User

Untitled

a guest
May 17th, 2017
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.88 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Document</title>
  6. <link href="finalstyles.css" rel="stylesheet">
  7. </head>
  8. <body>
  9. <nav>
  10. <ul>
  11. <li><a href="#">HOME</a></li>
  12. <li><a href="#">ABOUT</a></li>
  13. <li><a href="#">CONTACT</a></li>
  14. </ul>
  15. </nav>
  16. <header style="background-color:#dedede"><h1>HEADER</h1>
  17. </header>
  18. <section>
  19. <div class="col col-6-12" style="background-color:#dedede">
  20. <h1>h1</h1>
  21. <p><small>SMALL p col col-6-12</small> Lorem ipsum dolor sit amet, consectetur adipisicing elit. Pariatur voluptas odio laudantium. Cumque aspernatur nesciunt minima quaerat, culpa. Temporibus est labore voluptatem commodi alias provident officia impedit et repellat modi?</p>
  22. </div>
  23. <div class="col col-6-12" style="background-color:#dedede">
  24. <h2>h2</h2>
  25. <p><strong>STRONG p col col-6-12 </strong>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Nisi saepe pariatur nulla eaque nemo, delectus nostrum id nam accusantium similique distinctio praesentium numquam sapiente nobis repellendus quia iste, possimus doloremque.</p>
  26. </div>
  27. </section>
  28. <section>
  29. <div class="col col-4-12" style="background-color:#dedede">
  30. <h3>h3</h3>
  31. <p><blockquote> BLOCKQUOTE Lorem ipsum dolor sit amet, </blockquote>consectetur adipisicing elit. Quidem architecto doloremque non sit.Animi nostrum asperiores accusamus amet consequuntur, velit consequatur repellat facere vitae earum cumque quasi dolore facilis sequi.</p>
  32. </div>
  33. <div class="col col-4-12" style="background-color:#dedede">
  34. <h3>h3</h3>
  35. <p class="grow">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem architecto doloremque non sit. Animi nostrum asperiores accusamus amet consequuntur, velit consequatur repellat facere vitae earum cumque quasi dolore facilis sequi.</p>
  36. </div>
  37. <div class="col col-4-12" style="background-color:#dedede">
  38. <h3>h3</h3>
  39. <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem architecto doloremque non sit. Animi nostrum asperiores accusamus amet consequuntur, velit consequatur repellat facere vitae earum cumque quasi dolore facilis sequi.</p>
  40. </div>
  41. </section>
  42. <section>
  43. <!-- <div class='ez-form-info'>Required fileds are marked with an asterisk (*)</div> -->
  44.  
  45. <form class="group ez-form" style="background-color:#dedede">
  46. <h1>Sign Up!<span>We would love to hear from you</span></h1>
  47. <fieldset>
  48. <!-- <div class="col col-4-12">-->
  49. <legend>Personal Information</legend>
  50.  
  51. <label for='firstName'>First Name <span class='ez-form-span-mobile'>*</span><span class='ez-form-span-desktop'>(Required)</span> </label>
  52. <input type='text' name='firstName' placeholder='John'>
  53. <div class='ez-form-clear'></div>
  54.  
  55. <label for='lastName'>Last Name <span class='ez-form-span-mobile'>*</span><span class='ez-form-span-desktop'>Required)</span></label>
  56. <input type='text' name='lastName' placeholder='Doe'>
  57. </fieldset>
  58. <!-- </div>-->
  59. <!-- <div class="col col-4-12">-->
  60. <fieldset>
  61. <legend>Contact Information</legend>
  62. <label for='email'>Email <span class='ez-form-span-mobile'>*</span> <span class='ez-form-span-desktop'>(Required)</span> </label>
  63. <input type='text' name='email' placeholder='johnDoe@gmail.com'>
  64. <div class='ez-form-clear'></div>
  65.  
  66. <label for='telephone'>Telephone </label>
  67. <input type='text' name='telephone' placeholder='555.554.6786'>
  68. <div class='ez-form-clear'></div>
  69.  
  70. <label for='contact'>Prefered Contact</label>
  71. <input type='radio' name='contact' value='email'>Email
  72. <input type='radio' name='contact' value='phone'>Phone
  73. <div class='ez-form-clear'></div>
  74.  
  75. <label>Reason for Contact </label>
  76. <select class='ez-form-select'>
  77. <option value='selectOne'>Select One</option>
  78. <option value='career'>Career Opportunities</option>
  79. <option value='volunteer'>Volunteer work</option>
  80. </select>
  81. <div class='ez-form-clear'></div>
  82. </fieldset>
  83. <!-- </div>-->
  84. <!-- <div class="col col-4-12">-->
  85. <fieldset>
  86. <legend>Other Information</legend>
  87. <label for=interest>I am interested in </label>
  88. <input type='checkbox' name='interest'>HTML
  89. <input type='checkbox' name='interest'>CSS
  90. <input type='checkbox' name='interest'>javaScript
  91. <input type='checkbox' name='interest'>jQuery
  92. <div class='ez-form-clear'></div>
  93. <label for='comments'>Comments</label>
  94. <textarea placeholder='Thank you for visiting our site'></textarea>
  95. <input type='submit' value='Submit'>
  96. </fieldset>
  97.  
  98.  
  99. <!-- </div>-->
  100.  
  101.  
  102. </form>
  103.  
  104. <!-- <div>-->
  105.  
  106. <table class='ez-responsive'>
  107. <caption>Competitors</caption>
  108. <thead>
  109. <tr>
  110. <th>Player</th>
  111. <th>Team</th>
  112. <th>Position</th>
  113. <th>Conference</th>
  114. </tr>
  115. </thead>
  116. <tbody>
  117. <tr>
  118. <td data-label="player">Russel Westbrook</td>
  119. <td data-label="team">Oklahoma City Thunder</td>
  120. <td data-label="position">Point Guard</td>
  121. <td data-label="conference">Western</td>
  122. </tr>
  123. <tr>
  124. <td data-label="player">Kawhi Leonard</td>
  125. <td data-label="team">San Antonio Spurs</td>
  126. <td data-label="position">Small Forward</td>
  127. <td data-label="conference">Western</td>
  128. </tr>
  129. </tbody>
  130. </table>
  131. <!-- </div>-->
  132. <table class='ez-table-striped'>
  133. <caption>Contact Information</caption>
  134. <thead>
  135. <tr class='ez-table-striped-th-col'>
  136. <th scope='col' class='ez-table-striped-td'>Name</th>
  137. <th scope='col'class='ez-table-striped-td'>Phone</th>
  138. <th scope='col' class='ez-table-striped-td'>City</th>
  139. </tr>
  140. </thead>
  141. <tbody>
  142. <tr class='ez-table-striped-row'>
  143. <th scope='row' class='ez-table-striped-th'>John Doe</th>
  144. <td class='ez-table-striped-td'>555.123.4567</td>
  145. <td class='ez-table-striped-td'>San Diego</td>
  146. </tr>
  147. <tr>
  148. <th scope='row' class='ez-table-striped-th'>John Doe</th>
  149. <td class='ez-table-striped-td'>555.123.4567</td>
  150. <td class='ez-table-striped-td'>San Diego</td>
  151. </tr>
  152. <tr class='ez-table-striped-row'>
  153. <th scope='row' class='ez-table-striped-th'>John Doe</th>
  154. <td class='ez-table-striped-td'>555.123.4567</td>
  155. <td class='ez-table-striped-td'>San Diego</td>
  156. </tr>
  157. <tr class='ez-table-striped-row'>
  158. <th scope='row' class='ez-table-striped-th'>John Doe</th>
  159. <td class='ez-table-striped-td'>555.123.4567</td>
  160. <td class='ez-table-striped-td'>San Diego</td>
  161. </tr>
  162. <tr class='ez-table-striped-row'>
  163. <th scope='row' class='ez-table-striped-th'>John Doe</th>
  164. <td class='ez-table-striped-td'>555.123.4567</td>
  165. <td class='ez-table-striped-td'>San Diego</td>
  166. </tr>
  167.  
  168. </tbody>
  169.  
  170. </table>
  171. <br /><br />
  172.  
  173. </section>
  174. <hr>
  175. <footer style="background-color:#dedede"><h4>Footer</h4>
  176. </footer>
  177. </body>
  178. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement