We Recommend

HTML: The Definitive Guide HTML: The Definitive Guide
They teach you that learning HTML is like learning any other language and that reading a book of rules can only take you so far. Readers begin writing what may be their first Web page just two pages into the book's second chapter. From there on, they provide a wide range of HTML coding to allow readers to learn from good examples. The book includes a handy "cheat sheet" of HTML codes for quick reference.


Posted By

Feb30th1712 on 01/20/08


Tagged

css template xhtml strict


Versions (?)


Who likes this?

1 person has marked this snippet as a favorite

l1r


template.html


Published in: HTML 


  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  5. <meta name="" content=""/>
  6. <meta name="" content=""/>
  7. <meta name="robots" content="index,follow"/>
  8. <link rel="stylesheet" type="text/css" href="template.css"/>
  9. </head>
  10. <body>
  11. <div id="masthead">
  12. </div><!-- id="masthead" -->
  13.  
  14. <div id="toolbar">
  15. </div><!-- id="toolbar" -->
  16.  
  17. <div id="navigation">
  18. </div><!-- id="navigation" -->
  19.  
  20. <div id="content">
  21. <div id="content-main">
  22. </div><!-- id="content-main" -->
  23.  
  24. <div id="content-extra">
  25. </div><!-- id="content-extra"-->
  26.  
  27. </div><!-- id="content" -->
  28.  
  29. <div id="footer">
  30. <p><a href="http://validator.w3.org/check?uri=referer"><img src="http://www.w3.org/Icons/valid-xhtml10" alt="Valid XHTML 1.0 Strict"/></a>
  31. <a href="http://jigsaw.w3.org/css-validator/check/referer"><img src="http://jigsaw.w3.org/css-validator/images/vcss" alt="Valid CSS 2.1"/></a></p>
  32. </div><!-- id="footer" -->
  33. </body>
  34. </html>

Report this snippet 

You need to login to post a comment.