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

LukeLarsen on 01/29/08


Tagged

beginning xhtml doc an of


Versions (?)


xhtml start


Published in: XHTML 


Paste this in when starting an xhtml doc


  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. <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
  4. <title>Untitled</title>
  5.  
  6. <link rel="stylesheet" type="text/css" href="css/main.css" />
  7.  
  8. <!--[if lte IE 6]>
  9. <link rel="stylesheet" type="text/css" href="css/ie6.css" />
  10. <script type="text/javascript" src="js/supersleight.js"></script>
  11. <![endif]-->
  12.  
  13. <!--[if IE 7]>
  14. <link rel="stylesheet" type="text/css" href="css/ie7.css" />
  15. <![endif]-->
  16.  
  17. </head>

Report this snippet 

You need to login to post a comment.