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

wintondeshong on 06/26/07


Tagged

template html xhtml strict doctype


Versions (?)


Who likes this?

1 person has marked this snippet as a favorite

rodreegez


xHTML Strict Doctype Page Header


Published in: HTML 


URL: http://www.wintondeshong.com/

Simple template of an standard xHTML Strict document.

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
  4. <title>Untitled</title>
  5. <link rel="stylesheet" type="text/css" href="style/global.style.css" />
  6. </head>
  7.  
  8. </body>
  9. </html>

Report this snippet 

You need to login to post a comment.