My basic HTML structure


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



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.  
  4. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  5.  
  6. <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  7. <title>Page Title</title>
  8.  
  9. <meta name="Description" content="" />
  10. <meta name="Keywords" content="" />
  11. <meta name="Author" content="" />
  12. <meta name="Robots" content="index, nofollow" />
  13.  
  14. <link rel="Shortcut icon" href="" />
  15. <link rel="apple-touch-icon" href="" /> <!-- PNG 45x45 -->
  16.  
  17. <script type="text/javascript" src="js/jquery.js"></script>
  18. <script type="text/javascript" src="js/jquery-ui.js"></script>
  19. <script type="text/javascript" src="js/live.js"></script>
  20.  
  21. <link rel="stylesheet" href="css/reset.css" type="text/css" media="screen" charset="utf-8"/>
  22. <link rel="stylesheet" href="css/style.css" type="text/css" media="screen" charset="utf-8"/>
  23. <link rel="stylesheet" href="css/grid.css" type="text/css" media="screen" charset="utf-8"/>
  24. <link rel="stylesheet" href="css/jquery-ui.css" type="text/css" media="screen" charset="utf-8"/>
  25. </head>
  26.  
  27. <!-- Content here -->
  28. </body>
  29.  
  30. </html>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.