Şablon CSS
html:
<!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=iso-8859-9" />
<title>Css Kutular</title>
<link rel="stylesheet" type="text/css" href="css.css"/>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<body>
<div id="tasiyici">
<div id="header">
<h3>Sezer akıncı bir kutumuz oldu </h3>
<div id="sol">
<p>MENÜ<p>
</div>
<div id="sag">
<p>İÇERİK <p>
</div>
<div id="clear"></div>
<div id="footer">Sayfamızın footer bçlümü...</div>
<div id="clear"></div>
</div>
</body>
</html>
CSS:
body {
background-image: url(image/img2.jpg);
margin-top:0px;}
#tasiyici{
width:1024px;
background-color:#FFF;
margin-left:auto;
margin-right:auto;
}
#header{
background-color:#fff;
margin-top:0px;
margin-left:auto;
margin-right:auto;
width:1024;
border-radius:5px;
text-align:center;
border-width:10px;
border-color:#039;
border-style:outset;
padding:10px;
}
#sol{
margin:0px;
background-color:#0C3;
border-width:2px;
border-style:solid;
width:250px;
float:left;
}
#sag{
margin:0px;
background-color:#069;
border-width:1px;
border-style:solid;
width:760px;
float:!important;
}
#footer{
width:1024;
color:#FFF;
background-color:#000;
height:50px;
}#clear{
clear:both;}
<head>