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

lfatr on 07/21/08


Tagged


Versions (?)


Who likes this?

1 person has marked this snippet as a favorite

saeed


my way xhtml 1.0 template yui jquery


Published in: XHTML 


  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3.  
  4. <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
  5. <head>
  6. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  7. <title>title</title>
  8.  
  9. <link rel="icon" href="favicon.png" type="image/x-icon" />
  10.  
  11. <link rel="stylesheet" href="http://yui.yahooapis.com/2.4.0/build/reset-fonts-grids/reset-fonts-grids.css" type="text/css" />
  12. <link rel="stylesheet" href="/css/screen.css" type="text/css" media="screen" />
  13. <link rel="stylesheet" href="/css/print.css" type="text/css" media="print" />
  14.  
  15. <!--[if IE]>
  16. <link rel="stylesheet" href="/css/ie.css" type="text/css" media="screen" />
  17. <![endif]-->
  18.  
  19. <script type="text/javascript" src="scripts/jquery.js" />
  20. <script type="text/javascript" src="scripts/client.js" />
  21. </head>
  22.  
  23. <div id="wrapper">
  24.  
  25. </div>
  26. </body>
  27.  
  28. </html>

Report this snippet 

You need to login to post a comment.