We Recommend

HTML: The Definitive Guide HTML: The Definitive Guide
They teach you that learning HTML is like learning any other language and that reading a book of rules can only take you so far. Readers begin writing what may be their first Web page just two pages into the book's second chapter. From there on, they provide a wide range of HTML coding to allow readers to learn from good examples. The book includes a handy "cheat sheet" of HTML codes for quick reference.


Posted By

miziomon on 11/05/07


Tagged


Versions (?)


simple html page template


Published in: HTML 


very simple html page

  1. <head>
  2. <meta http-equiv="Content-Type" content="text/html;" >
  3. <link type="text/css" rel="stylesheet" media="screen" href="" >
  4. <script type="text/javascript" src="" ></script>
  5. </head>
  6. <body>
  7. <div id="wrapper">
  8. <div id="header"></div>
  9. <div id="main"></div>
  10. <div id="footer"></div>
  11. </div>
  12.  
  13. </body>
  14. </html>

Report this snippet 

Comments

RSS Icon Subscribe to comments
Posted By: sbbath on November 21, 2007

Don't forget to use doctypes and encoding types:

You need to login to post a comment.