Oinsa mak kria layout hanesan imajen kraik



Imajen iha leten fahe ba parte 4, HEADER, BODYSIDEBAR, no FOOTER. Atu halo koneksaun ba css iha modelu rua, hakerek direitamente css direitamente script CSS iha tag <head>…</head>  ou bele uza link ne’ebe liga html ho css
Kria file style.css
#wrapper {
width: 800px;
margin: 0 auto;
}

#header {
float: left;
width: 100%;
height: 150px;
background-color: red;
}

#body {
float: left;
width: 70%;
height: 300px;
background-color: blue;
}

#sidebar {
float: left;
width: 30%;
height: 300px;
background-color: green;
}

#footer {
float: left;
width: 100%;
height: 100px;
background-color: yellow;
}