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

jleblanc on 06/30/06


Tagged

template Shell xhtml transitional


Versions (?)


Who likes this?

4 people have marked this snippet as a favorite

postNuKe
kathyd
vali29
fukami


XHTML 1.0 Transitional Shell


Published in: HTML 


  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/transitional.dtd">
  3.  
  4. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  5. <title>XHTML 1.0 Shell - Transitional Specification</title>
  6. <meta http-equiv="content-type" content="text/html;charset=iso-8859-1" />
  7. <meta name="keywords" content="keywords, separated, by, commas" />
  8. <meta name="description" content="brief description less than 255 characters" />
  9. <meta name="expiration" content="30 Dec 2002 00:00:00 -0600" />
  10. <meta name="custodian" content="first.last@mcmail.vanderbilt.edu" />
  11. <meta name="maintainer" content="first.last@mcmail.vanderbilt.edu" />
  12. </head>
  13.  
  14.  
  15. Develop Here
  16.  
  17.  
  18. </body>
  19. </html>

Report this snippet 

You need to login to post a comment.