XHTML strict 1.0 skeleton


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

my take on an xhtml skeleton


Copy this code and paste it in your HTML
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  3.  
  4. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" dir="ltr">
  5.  
  6.  
  7. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  8.  
  9. <title>untitled</title>
  10.  
  11. <base href="" />
  12.  
  13. <!-- meta tags: -->
  14. <meta name="Author" content="author" />
  15. <meta name="Description" content="desc" />
  16. <meta name="Copyright" content="copyright" />
  17. <meta name="Robots" content="robots" />
  18. <meta name="Generator" content="generator" />
  19. <meta name="Keywords" content="keywords" />
  20.  
  21. <!-- optionals: -->
  22. <!-- <link rel="Shortcut Icon" href="/favicon.ico" type="image/x-icon" />
  23. -->
  24. <!-- <link href="load_your_javascript.js" type="text/javascript" />
  25. -->
  26.  
  27. <!-- css: -->
  28. <!-- <link rel="stylesheet" href="/css/screen.css" type="text/css" media="screen, projection" />
  29. -->
  30. <!-- <link rel="stylesheet" href="/css/print.css" type="text/css" media="print" />
  31. -->
  32.  
  33. </head>
  34.  
  35.  
  36.  
  37.  
  38. </body>
  39.  
  40. </html>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.