html 4.01 Strict Doctype skeleton


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

html skeleton 4.01 Strict!


Copy this code and paste it in your HTML
  1. <!DOCTYPE HTML>
  2.  
  3. <!--[if lt IE 7 ]> <html class="ie ie6"> <![endif]-->
  4. <!--[if IE 7 ]> <html class="ie ie7"> <![endif]-->
  5. <!--[if IE 8 ]> <html class="ie ie8"> <![endif]-->
  6. <!--[if IE 9 ]> <html class="ie ie9"> <![endif]-->
  7. <!--[if (gt IE 9)|!(IE)]><!--> <html> <!--<![endif]-->
  8.  
  9. <head>
  10. <meta charset="utf-8">
  11. <title>untitled</title>
  12.  
  13. <meta name="description" content="Description">
  14. <meta name="author" content="Author">
  15.  
  16. <link rel="stylesheet" type="text/css" href="style.css">
  17. <link rel="Shortcut Icon" href="favicon.ico" type="image/x-icon">
  18. </head>
  19. <body>
  20. <div id="header">
  21. header
  22. </div><!-- header -->
  23. <div id="nav">
  24. navigation
  25. </div><!-- nav -->
  26. <div id="main">
  27. content
  28. </div><!-- main -->
  29. <div id="footer">
  30. footer
  31. <div>Copyright &copy; 2011<?php echo (date('Y') > 2011) ? '-' . date('Y') : '' ?> <strong>websitename.ro</strong>. Toate drepturile rezervate.</div>
  32.  
  33. </div><!-- footer -->
  34. <!-- insert the javascript -->
  35. </body>
  36. </html>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.