We Recommend

HTML Dog: The Best-Practice Guide to XHTML and CSS HTML Dog: The Best-Practice Guide to XHTML and CSS
For readers who want to design Web pages that load quickly, are easy to update, accessible to all, work on all browsers and can be quickly adapted to different media, this comprehensive guide represents the best way to go about it.


Posted By

komposition on 05/24/08


Tagged

textmate html


Versions (?)


Who likes this?

1 person has marked this snippet as a favorite

mitry


xhtml Starter Template(Navi in Header, 2 column)


Published in: XHTML 


  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja" dir="ltr">
  4.  
  5. <meta name="Keywords" content=",,,," />
  6. <meta name="Description" content="" />
  7.  
  8. <link rel="stylesheet" href="/css/master.css" type="text/css" media="screen" title="no title" charset="utf-8" />
  9. <title>TITLE</title>
  10. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  11. <meta http-equiv="content-style-type" content="text/css" />
  12. <meta http-equiv="content-script-type" content="text/javascript" />
  13.  
  14. </head>
  15.  
  16. <div id="container">
  17. <div id="header">
  18. <h1>Header1</h1>
  19. <h2>Header2</h2>
  20. <ul id="navi">
  21. <li id="navi01"><a href="page.html" title="navi1">Navi1</a></li>
  22. <li id="navi02"><a href="page.html" title="navi2">Navi2</a></li>
  23. <li id="navi03"><a href="page.html" title="navi3">Navi3</a></li>
  24. <li id="navi04"><a href="page.html" title="navi4">Navi4</a></li>
  25. <li id="navi05"><a href="page.html" title="navi5">Navi5</a></li>
  26. </ul>
  27. </div><!-- END of #header -->
  28.  
  29. <div id="main">
  30. <div id="contets">
  31. Contents Here.
  32. </div>
  33. <div id="side">
  34. Side Column.
  35. </div>
  36. </div><!-- END of #main -->
  37. <div id="footer">
  38. <ul id="fnavi">
  39. <li id="fnai01"><a href="some_page1.html" title="footer_navi1">footer_navi1</a></li>
  40. <li id="fnai02"><a href="some_page2.html" title="footer_navi2">footer_navi2</a></li>
  41. <li id="fnai03"><a href="some_page3.html" title="footer_navi3">footer_navi3</a></li>
  42. <li id="fnai04"><a href="some_page4.html" title="footer_navi4">footer_navi4</a></li>
  43. <li id="fnai05"><a href="some_page5.html" title="footer_navi5">footer_navi5</a></li>
  44. <li id="fnai06"><a href="some_page6.html" title="footer_navi6">footer_navi6</a></li>
  45. <li id="fnai07"><a href="some_page7.html" title="footer_navi7">footer_navi7</a></li>
  46. </ul>
  47. <p id="copyright">(c) Copyright SOMEONE. All right reserrved;</p>
  48. </div><!-- END of #footer -->
  49. </div>
  50. </body>
  51. </html>

Report this snippet 

You need to login to post a comment.