Basic HTML 5 Structure


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



Copy this code and paste it in your HTML
  1. <!DOCTYPE html>
  2.  
  3. <head>
  4.  
  5. <meta charset="utf-8" />
  6.  
  7. <title>Basic</title>
  8.  
  9. <!-- blueprint -->
  10. <link rel="stylesheet" href="css/blueprint/screen.css" type="text/css" media="screen, projection">
  11. <link rel="stylesheet" href="css/blueprint/print.css" type="text/css" media="print">
  12. <!--[if lt IE 8]><link rel="stylesheet" href="css/blueprint/ie.css" type="text/css" media="screen, projection"><![endif]-->
  13.  
  14. <!-- site styles -->
  15. <link rel="stylesheet" type="text/css" href="css/screen.css" />
  16.  
  17. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
  18.  
  19. <script type="text/javascript" src="http://use.typekit.com/egp5joo.js"></script>
  20. <script type="text/javascript">try{Typekit.load();}catch(e){}</script>
  21.  
  22. </head>
  23.  
  24. <body>
  25.  
  26.  
  27.  
  28. </body>
  29.  
  30. </html>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.