HTML 1.0 Strict Template


/ Published in: HTML
Save to your folder(s)

A basic template that sets up a general static site with links to jquery, swfobject and a div container.


Copy this code and paste it in your HTML
  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" xml:lang="en" dir="ltr">
  4. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  5. <title>title goes here &raquo; Site title here</title>
  6.  
  7. <base href="" />
  8. <meta name="Author" content="#" />
  9. <meta name="Description" content="#" />
  10. <meta name="Copyright" content="#" />
  11. <meta name="Robots" content="#" />
  12. <meta name="Generator" content="#" />
  13. <meta name="Keywords" content="#" />
  14.  
  15. <link rel="Shortcut Icon" href="/favicon.ico" type="image/x-icon" />
  16.  
  17. <link rel="stylesheet" href="/css/style.css" type="text/css" media="screen, projection" />
  18.  
  19. <script type="text/javascript" charset="utf-8" src="js/jquery/jquery-1.3.2.js"></script>
  20. <script type="text/javascript" charset="utf-8" src="js/swfobject/swfobject.js"></script>
  21. <script type="text/javascript" charset="utf-8" src="js/custom.js"></script>
  22.  
  23. <!--[if IE]>
  24. <link rel="stylesheet" href="css/ie.css" type="text/css" media="screen, projection" />
  25. <![endif]-->
  26.  
  27. </head>
  28.  
  29. <body>
  30.  
  31. <div id="container">
  32.  
  33. </div>
  34.  
  35. </body>
  36. </html>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.