Помогите, пожалуйста. Нужна критика и помощь, что я не так сделал не получается 100%
<html lang="ru">
<head>
<title>Испытание: строим сетку</title>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="block1">
<div class="header">
<p>Header</p>
</div>
<div class="menu">
<p>Menu</p>
</div>
<div class=promo>
<div class="promo-1">
Promo 1
</div>
<div class="promo-2">
Promo 2
</div>
</div>
</div>
<div class="block2 clearfix">
<div class="left">
Left
</div>
<div class="main">
Main
</div>
<div class="right">
Right
</div>
</div>
<div class="footer">
Footer
</div>
</div>
</body>
</html>
html,
body {
margin: 0;
padding: 0;
}
body {
width: 450px;
height: 335px;
font-size: 10px;
font-family: "Arial", sans-serif;
color: white;
}
.block1 {
background-color: #34495e;
height: 170px;
padding-top: 1px;
}
.header {
background-color: #c0392b;
width: 350px;
height: 35px;
margin: 10px 50px;
}
.menu {
background-color: #3498db;
height: 35px;
padding-left: 55px;
}
.promo {
margin: 10px 50px;
}
.promo-1 {
background-color: #c0392b;
width: 170px;
height: 60px;
float: left;
margin-right: 10px;
}
.promo-2 {
background-color: #c0392b;
width: 170px;
height: 60px;
float: left;
}
.block2 {
margin-top: 10px;
margin-bottom: 10px;
}
.left,
.main,
.right {
background-color: #3498db;
}
.left {
width: 70px;
height: 110px;
float: left;
margin-left: 50px;
margin-right: 10px;
}
.main {
width: 190px;
height: 110px;
float: left;
margin-right: 10px;
}
.right {
width: 70px;
height: 110px;
float: left;
margin-right: 0;
}
.clearfix::after {
content: "";
display: table;
clear: both;
}
.footer {
background-color: #34495e;
height: 35px;
padding-top: 5px;
padding-left: 50px;
}
/*
Используемые цвета:
#34495e – мокрый асфальт
#c0392b – красный
#3498db – синий
*/