Posted By


CKOink on 02/24/12

Tagged


Statistics


Viewed 732 times
Favorited by 0 user(s)

Basic HTML5 Template


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

A basic template to use when starting a new page


Copy this code and paste it in your HTML
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <title>Base</title>
  4. body {
  5. background:#transparent;
  6. }
  7.  
  8. div#wrapper {
  9. background:#eee;
  10. margin:0 auto;
  11. padding:0;
  12. width:960px;
  13. min-height:600px
  14. }
  15. </head>
  16. <div id="wrapper">
  17. <h1>Base</h1>
  18. </div>
  19. </body>
  20. </html>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.