Page is a not externally linkable
sanji41 - 1:54 am on Oct 4, 2010 (gmt 0)
sorry man, must have miss it. use comments on your code so you'll never be lost on div's and keep div id's minimun. anyways, here it is. <!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<style type="text/css">
body{
margin:0;
padding:0;
}
#wrapper{
width:960px;
margin:0 auto 0 auto;
padding:0px;
}
#header{
height:100px;
padding:5px;
}
#header .banner{
float:left;
}
#container{
padding:5px;
}
#container .left{
float:left;
margin:0;
width:200px;
height:100px;
}
#container .right{
margin:0;
height:100px;
}
#footer{
margin:0;
}
#footer .foot{
float:right;
width:200px;
}
</style>
<body>
<div id="wrapper"><!--wrapper-->
<div id="header"><!--start of header-->
header
</div><!--end of header-->
<div id="container"><!--start of container-->
<div class="left"><!--start of left-->
left
</div><!--end of left-->
<div class="right"><!--start of right-->
right
</div><!--end of right-->
</div><!--end of container-->
<div id="footer"><!--start of footer-->
<div class="foot"><!--start foot-->
foot
</div><!--end of foot-->
</div><!--end of footer-->
</div><!--end of wrapper-->
</body>
</html>