//kasus.css
body {
margin: 10px auto;
width: 750px;
}
header,nav,section,article,aside,footer{
display:block;
}
header{
border: 1px solid purple;
height:80px;
}
nav{
border:1px solid blue;
height:50px;
padding:10px;
}
section{
padding:20px;
border:1px solid red;
height:370px;
}
article{
height:100%;
width: 73%;
float:left;
border:2px dashed red;
height:100%;
}
aside{
height:100%;
width: 23%;
float:right;
border:2px dashed blue;
height: 100%;
}
footer{
border:1px solid green;
clear:both;
height:30px;
}
//kasus.html
<!DOCTYPE HTML>
<html lang="en">
<head>
<title>Galoch - Kreasi layout</title>
<link rel="stylesheet" href="kasus.css" type="text/css"/>
</head>
<body>
<header>
header
</header>
<nav>
nav
</nav>
<section>
<article>
article
</article>
<aside>
aside
</aside>
section
</section>
<footer>
footer
</footer>
</body>
</html>