XHTML 1.1 Doctype Basic Template


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

Very simple XHTML 1.1 Doctype template.


Copy this code and paste it in your HTML
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
  3. "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
  4. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" >
  5. <head>
  6. <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
  7. <meta name="" />
  8. <meta name="description" content="" />
  9. <title>Title Here</title>
  10.  
  11. <!-- CSS Links -->
  12. <link rel="stylesheet" href="basic.css" type="text/css" media="screen" />
  13. <link rel="alternate stylesheet" type="text/css" href="alternative.css" title="alternative" />
  14.  
  15. <!-- Scripts Here -->
  16. <script src="../js/addEvent.js" type="text/javascript"></script>
  17. <script src="../js/sweetTitles.js" type="text/javascript"></script>
  18.  
  19. </head>
  20.  
  21.  
  22. </body>
  23. </html>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.