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.


Ballyhoo


Posted By

LeeRJohnson on 02/18/08


Tagged

basic template xhtml mobile skeletion


Versions (?)


Who likes this?

2 people have marked this snippet as a favorite

basicmagic
eilla


XHTML Basic 1.1 Document Template


Published in: HTML 


  1. <?xml version='1.0' encoding='UTF-8' ?>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML Basic 1.1//EN"
  3. "http://www.w3.org/TR/xhtml-basic/xhtml-basic11.dtd">
  4. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
  5. <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
  6. <meta http-equiv="Cache-Control" content="max-age=200" />
  7. <title>XHTML Basic 1.1</title>
  8. <link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
  9. <link rel="icon" href="favicon.ico" type="image/x-icon" />
  10. <link rel="author" href="http://design.leerjohnson.com" />
  11. <link type="text/css" media="screen" href="styles/screen.css" rel="stylesheet" />
  12. </head>
  13. <body id="page-id">
  14. <div id="page">
  15. <div id="site-header" >
  16. <h1 id="site-title">site title</h1>
  17. </div>
  18. <div id="page-content">
  19. <p>I am a XHTML Basic 1.1 skeleton</p>
  20. </div>
  21. <div id="site-footer" >
  22. <p>site footer content</p>
  23. </div>
  24. </div>
  25. </body>
  26. </html>

Report this snippet 

You need to login to post a comment.