Posted By


Waldio on 12/28/10

Tagged


Statistics


Viewed 698 times
Favorited by 0 user(s)

HTML4.1 boiler template


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



Copy this code and paste it in your HTML
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
  2. "http://www.w3.org/TR/html4/strict.dtd">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
  5. <title>Website Info | Website Naam</title>
  6. </head>
  7. <body>
  8. <div id="wrapper">
  9. <div id="header">
  10. <div id="logo"></div>
  11. <h1>Website Naam</h1>
  12. </div>
  13. <div id="navigatie">
  14. <ul id="nav">
  15. <li><a href="/">Home</a></li>
  16. <li><a href="/about.htm">About</a></li>
  17. <li><a href="/info.htm">Information</a></li>
  18. <li><a href="/content.htm">Contact</a></li>
  19. </ul>
  20. </div>
  21. <div id="content">
  22. <h2>Pagina naam</h2>
  23. <p>Hier wat tekst</p>
  24. <h3>Titel</h3>
  25. <p>Informatie</p>
  26. <h3>Volgende titel</h3>
  27. <p>Informatie</p>
  28. </div>
  29. <div id="footer">
  30. <p>Hier wat footer info.</p>
  31. </div>
  32. </div>
  33. </body>
  34. </html>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.