<div class="header">
<div class="header-center">
Header
</div>
</div>
<div class="content">
<div class="menu">
Menu
</div>
<div class="doublepromo">
<div class="promo1">
Promo 1
</div>
<div class="promo2">
Promo 2
</div>
</div>
<div class="triple">
<div class="left">
Left
</div>
<div class="main">
Main
</div>
<div class="right">
Right
</div>
</div>
<div class="footer">
Footer
</div>
</div>
</body>
html,
body {
margin: 0;
padding: 0;
}
body {
width: 450px;
height: 335px;
font-family: “Arial”, sans-serif;
font-size: 10px;
color: white;
}
.header{
background: #34495e;
height: 35px;
padding: 10px;
}
.header-center{
background: #c0392b;
height: 25px;
padding: 5px;
margin: 0 40px;
}
.menu{
background: #3498DB;
height: 25px;
padding: 5px 55px;
}
.doublepromo{
background: #34495e;
height: 80px;
}
.promo1{
float: left;
background: #c0392b;
width: 160px;
height: 50px;
padding: 5px;
margin-top: 10px;
margin-left: 50px;
}
.promo2{
float: right;
background: #c0392b;
width: 160px;
height: 50px;
padding: 5px;
margin-top: 10px;
margin-right: 50px;
}
.triple{
background: white;
height: 110px;
padding: 10px 50px;
}
.left{
float: left;
background: #3498DB;
width: 60px;
height: 100px;
padding: 5px;
margin-right: 10px;
}
.main{
float: left;
background: #3498DB;
width: 180px;
height: 100px;
padding: 5px;
}
.right{
float: right;
background: #3498DB;
width: 60px;
height: 100px;
padding: 5px;
}
.footer{
background: #34495e;
height: 25px;
padding: 5px 55px;
}