We Recommend

HTML Dog: The Best-Practice Guide to XHTML and CSS HTML Dog: The Best-Practice Guide to XHTML and CSS
For readers who want to design Web pages that load quickly, are easy to update, accessible to all, work on all browsers and can be quickly adapted to different media, this comprehensive guide represents the best way to go about it.


Posted By

czapata on 04/19/08


Tagged

xhtml ci


Versions (?)


Who likes this?

1 person has marked this snippet as a favorite

MoFu


XHTML Template


Published in: XHTML 


  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  3. <html xmlns='http://www.w3.org/1999/xhtml'>
  4. <title>{pagetitle}</title>
  5. <base href="{base}">
  6. <link rel="stylesheet" type="text/css" href="{css}">
  7. </head>
  8. <div class="PageHeader">&nbsp;</div>
  9. <div class="PageContainer">
  10. <div class="ContentContainer">
  11. {main_menu}
  12. {main_content}
  13. </div>
  14. </div>
  15. <div class="PageFooter">
  16. {footer_menu}
  17. </div>
  18. </body>
  19. </html>

Report this snippet 

You need to login to post a comment.