Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.63 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.  
  4. <head>
  5. <meta charset="UTF-8">
  6. <meta name="description" content="Sample HTML5 Layout">
  7. <meta name="keywords" content="keyword 1, keyword 2, keyword 3">
  8. <meta name="author" content="Beatriz Sopeña Merino">
  9. <meta name="copyright" content="" />
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <title>Sample HTML5 Layout</title>
  12. <link href="styles.min.css" rel="stylesheet" />
  13. </head>
  14.  
  15. <body>
  16. <header>
  17. <div>
  18. MY LOGO
  19. </div>
  20. <nav>
  21. <ul>
  22. <li>
  23. <a href="#">
  24. Link 1
  25. </a>
  26. </li>
  27. <li>
  28. <a href="#">
  29. Link 2
  30. </a>
  31. </li>
  32. <li>
  33. <a href="#">
  34. Link 3
  35. </a>
  36. </li>
  37. <li>
  38. <a href="#">
  39. Link 4
  40. </a>
  41. </li>
  42. <li>
  43. <a href="#">
  44. Link 5
  45. </a>
  46. </li>
  47. </ul>
  48. </nav>
  49. </header>
  50.  
  51.  
  52. <main>
  53. <h1>
  54. PAGE TITLE
  55. </h1>
  56.  
  57. <section>
  58. <h2>
  59. SECTION TITLE
  60. </h2>
  61. <article>
  62. <header>
  63. <h2>
  64. ARTICLE TITLE
  65. </h2>
  66. <p>
  67. Posted on <time datetime="2009-09-04T16:31:24+02:00">September 4th 2009</time> by <a
  68. href="#">Writer</a> - <a href="#comments">6 comments</a>
  69. </p>
  70. </header>
  71. <div>
  72. <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec ullamcorper lacus a velit auctor,
  73. sit amet viverra mi lobortis. Phasellus facilisis tempus enim. Interdum et malesuada fames ac
  74. ante ipsum primis in faucibus. In eget porttitor magna. Cras nibh lorem, sodales ut eros ac,
  75. convallis fermentum diam. Fusce lacus dolor, eleifend sit amet nulla sit amet, imperdiet pretium
  76. neque. Maecenas facilisis maximus elementum.</p>
  77. </div>
  78. </article>
  79. <article>
  80. <h2>
  81. ARTICLE TITLE
  82. </h2>
  83. </article>
  84. </section>
  85.  
  86. <section>
  87. <h2>
  88. SECTION TITLE
  89. </h2>
  90.  
  91. <article>
  92. <h2>
  93. ARTICLE TITLE
  94. </h2>
  95. </article>
  96.  
  97. <article>
  98. <h2>
  99. ARTICLE TITLE
  100. </h2>
  101. </article>
  102.  
  103. <article>
  104. <h2>
  105. ARTICLE TITLE
  106. </h2>
  107. </article>
  108. </section>
  109. </main>
  110.  
  111.  
  112. <aside>
  113. SIDEBAR
  114. </aside>
  115.  
  116.  
  117. <footer>
  118. <nav>
  119. <ul>
  120. <li>
  121. <a href="#">
  122. Link 1
  123. </a>
  124. </li>
  125. <li>
  126. <a href="#">
  127. Link 2
  128. </a>
  129. </li>
  130. <li>
  131. <a href="#">
  132. Link 3
  133. </a>
  134. </li>
  135. </ul>
  136. </nav>
  137.  
  138. <p>Copyright 2019. beatrizsmerino. All right reserved.</p>
  139. </footer>
  140.  
  141. <script src="scripts.min.js"></script>
  142. </body>
  143.  
  144. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement