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 HTML 4.01//EN">
  2. <head>
  3. <link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
  4. <link rel="stylesheet" type="text/css" media="screen" href="style.css" />
  5. <script type="text/javascript" src="jquery.js" />
  6. </head>
  7. <body>
  8. <div id="wrap">
  9. <div id="header"></div>
  10. <div id="nav"></div>
  11. <div id="main"></div>
  12. <div id="sidebar"></div>
  13. <div id="footer"></div>
  14. </div>
  15. </body>
  16. </html>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.