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

1man on 07/06/06


Tagged

basic template xhtml


Versions (?)


Who likes this?

20 people have marked this snippet as a favorite

designerd
meth
arturo
jakedahn
sendoa
panatlantica
tjstankus
j4k
gensmann
yu_industries
banjomamo
manub
fael
swiggy
kellyharding
vali29
fukami
snucko
cbrant
Juego


XHTML 1.0 Transitional Basic Template


Published in: HTML 


Basic template for xhtml transitional

  1. <!DOCTYPE html
  2. PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  3. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  4. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  5. <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
  6. <meta name="keywords" content="" />
  7. <meta name="description" content="" />
  8. <title>Title Here</title>
  9.  
  10. <link rel="stylesheet" href="css/basic.css" type="text/css" media="screen" />
  11. <link rel="stylesheet" type="text/css" media="screen" href="css/layout.css" />
  12. <link rel="stylesheet" type="text/css" media="print" href="css/print.css" />
  13. <!-- Scripts here -->
  14. <script src="js/*.js" type="text/javascript"></script>
  15.  
  16. </head>
  17.  
  18. </body>
  19. </html>

Report this snippet 

You need to login to post a comment.