<!DOCTYPE html>
<html lang="ru">
<head>
<title>Испытание: строим сетку</title>
<meta charset="utf-8">
</head>
<body>
<div class="header">
<div class="header-1">Header</div>
</div>
<div class="menu">Menu</div>
<div class="header1">
<div class="Promo1">Promo 1</div>
<div class="Promo2">Promo 2</div>
</div>
<div class="left">Left</div>
<div class="main">Main</div>
<div class="right">Right</div>
<div class="footer">Footer</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-color: #34495e;
width: 350px;
height: 35px;
padding-left: 50px;
padding-right: 50px;
padding-top: 10px;
padding-bottom: 10px;
}
.header-1 {
background-color: #c0392b;
height: 30px;
padding-left: 5px;
padding-top: 5px;
}
.menu {
background-color: #3498DB;
height: 20px;
padding-left: 55px;
padding-top: 5px;
padding-bottom: 10px;
}
.Promo1 {
background-color: #c0392b;
height: 55px;
padding-left: 5px;
padding-top: 5px;
display: table;
float: left;
width: 165px;
}
.Promo2 {
background-color: #c0392b;
height: 55px;
padding-left: 5px;
padding-top: 5px;
display: table;
float: right;
width: 165px;
}
.header1 {
background-color: #34495e;
width: 350px;
height: 60px;
padding-left: 50px;
padding-right: 50px;
padding-top: 10px;
padding-bottom: 10px;
}
.left {
display: table;
background-color: #3498DB;
float: left;
padding-left: 5px;
padding-top: 5px;
height: 105px;
margin-top: 10px;
margin-bottom: 10px;
margin-left: 50px;
width: 65px;
}
.main {
display: table;
background-color: #3498DB;
float: left;
padding-left: 5px;
padding-top: 5px;
height: 105px;
margin-top: 10px;
margin-bottom: 10px;
margin-left: 10px;
width: 185px;
}
.right {
display: table;
background-color: #3498DB;
float: left;
padding-left: 5px;
padding-top: 5px;
height: 105px;
margin-top: 10px;
margin-bottom: 10px;
margin-left: 10px;
width: 65px;
}
.footer {
background-color: #34495e;
width: 350px;
height: 20px;
padding-left: 55px;
padding-right: 50px;
padding-top: 5px;
padding-bottom: 10px;
clear: both;
}
/*
Используемые цвета:
#34495e – мокрый асфальт
#c0392b – красный
#3498DB – синий