We Recommend
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 (? )
07/08/08 09:22pm 06/30/08 10:30am 05/24/08 04:12am
Who likes this? 1 person has marked this snippet as a favorite
mitry
xhtml Starter Template(Navi in Header, 2 column)
Published in: XHTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang ="ja" lang ="ja" dir ="ltr" >
<meta name ="Keywords" content =",,,," /> <meta name ="Description" content ="" />
<link rel ="stylesheet" href ="/css/master.css" type ="text/css" media ="screen" title ="no title" charset ="utf-8" /> <meta http-equiv ="content-type" content ="text/html; charset=utf-8" /> <meta http-equiv ="content-style-type" content ="text/css" /> <meta http-equiv ="content-script-type" content ="text/javascript" />
</head>
<li id ="navi01" > <a href ="page.html" title ="navi1" > Navi1
</a> </li> <li id ="navi02" > <a href ="page.html" title ="navi2" > Navi2
</a> </li> <li id ="navi03" > <a href ="page.html" title ="navi3" > Navi3
</a> </li> <li id ="navi04" > <a href ="page.html" title ="navi4" > Navi4
</a> </li> <li id ="navi05" > <a href ="page.html" title ="navi5" > Navi5
</a> </li> </ul>
</div> <!-- END of #header -->
Contents Here.
</div>
Side Column.
</div>
</div> <!-- END of #main -->
<li id ="fnai01" > <a href ="some_page1.html" title ="footer_navi1" > footer_navi1
</a> </li> <li id ="fnai02" > <a href ="some_page2.html" title ="footer_navi2" > footer_navi2
</a> </li> <li id ="fnai03" > <a href ="some_page3.html" title ="footer_navi3" > footer_navi3
</a> </li> <li id ="fnai04" > <a href ="some_page4.html" title ="footer_navi4" > footer_navi4
</a> </li> <li id ="fnai05" > <a href ="some_page5.html" title ="footer_navi5" > footer_navi5
</a> </li> <li id ="fnai06" > <a href ="some_page6.html" title ="footer_navi6" > footer_navi6
</a> </li> <li id ="fnai07" > <a href ="some_page7.html" title ="footer_navi7" > footer_navi7
</a> </li> </ul>
<p id ="copyright" > (c) Copyright SOMEONE. All right reserrved;
</p> </div> <!-- END of #footer -->
</div>
</body>
</html>
Report this snippet