CSS ile Site Taslağı Oluşturma

CSS ile Site Taslağı Oluşturma

taslak

HTML Kodları ;

[code lang=”html”]

<div id="wrapper">
<div id="header">
</div>
<div id="buton">
</div>
<div id="content">
</div>
<div id="sidebar">
</div>
<div id="footer">
</div>
</div>
[/code]

CSS Kodları ;

[code lang=”css”]
#wrapper
{
height:600px;
width:700px;
margin:10px auto;
}
#header
{
height:100px;
width:700px;
background-color:#00C;
}
#buton
{
height:50px;
width:700px;
background-color:#60C;
}
#content
{
height:450px;
width:500px;
background-color:#69F;
float:right;
}
#sidebar
{
height:450px;
width:200px;
background-color:#0CF;
float:left;
}
#footer
{
height:50px;
width:700px;
background-color:#6FF;
clear:both;
}
[/code]

Bir yanıt yazın

E-posta adresiniz yayınlanmayacak. Gerekli alanlar * ile işaretlenmişlerdir