HTML5 document with header, footer and nav elements


/ Published in: HTML
Save to your folder(s)



Copy this code and paste it in your HTML
  1. <!DOCTYPE html>
  2. <head>
  3. <meta charset="utf-8">
  4.  
  5. <link href="style.css" rel="stylesheet" type="text/css">
  6. </head>
  7. <body>
  8.  
  9. <div id="wrapper">
  10.  
  11. <header>
  12.  
  13. <nav>
  14. <ul>
  15. <li></li>
  16. <li></li>
  17. <li></li>
  18. <li></li>
  19. </ul>
  20. </nav>
  21.  
  22. </header>
  23.  
  24. <footer>
  25.  
  26. </footer>
  27.  
  28. </div>
  29.  
  30. </body>
  31. </html>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.