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

lister on 04/21/08


Tagged

textmate xhtml


Versions (?)


basic xhtml page


Published in: XHTML 


URL: http://tutorialblog.org/designers-toolbox-blank-css-template/

by Chris Coyier


  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3.  
  4. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  5.  
  6. <title>PAGE TITLE HERE</title>
  7.  
  8. <link rel="stylesheet" type="text/css" href="style.css" />
  9. </head>
  10.  
  11.  
  12. <div id="page-wrap">
  13.  
  14. </div>
  15.  
  16. <!-- Put Google Analytics Code Here -->
  17.  
  18. </body>
  19.  
  20. </html>

Report this snippet 

You need to login to post a comment.