XHTML 1.0 Transitional Basic Template


/ Published in: HTML
Save to your folder(s)

Basic template for xhtml transitional


Copy this code and paste it in your HTML
  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. <head>
  6. <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
  7. <meta name="keywords" content="" />
  8. <meta name="description" content="" />
  9. <title>Title Here</title>
  10.  
  11. <link rel="stylesheet" href="css/basic.css" type="text/css" media="screen" />
  12. <link rel="stylesheet" type="text/css" media="screen" href="css/layout.css" />
  13. <link rel="stylesheet" type="text/css" media="print" href="css/print.css" />
  14. <!-- Scripts here -->
  15. <script src="js/*.js" type="text/javascript"></script>
  16.  
  17. </head>
  18. <body>
  19.  
  20. </body>
  21. </html>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.