/ Published in: HTML

Basic template for strict html document
Expand |
Embed | Plain Text
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" /> <link rel="stylesheet" type="text/css" href="includes/general.css" /> <link rel="stylesheet" type="text/css" href="includes/custom.css" id="styles" /> <!--[if lt IE 7]> <script type="text/javascript"> document.getElementById("styles").href = "includes/ie.css"; </script> <![endif]--> </head> <body> <div id="container"> <div id="header"> </div> <div class="left"> </div> <div class="right"> </div> <div id="foot"> </div> </div> </body> </html>
You need to login to post a comment.