Прошу посмотреть код и оценить его.
Буду ждать вашу конструктивную критику и рекомендации улучшению когда.
Спасибо.
</head>
<body>
<div class="page-header clearfix">
<div class="header">Header</div>
<div class="menu">Menu</div>
<div class="promo">Promo 1</div>
<div class="promo">Promo 2</div>
</div>
<div class="features">
<div class="features left">Left</div>
<div class="features main">Main</div>
<div class="features right">Right</div>
</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;
}
/*
Используемые цвета:
#34495e – мокрый асфальт
#c0392b – красный
#3498DB – синий
*/
.page-header {
background:#34495e;
width:450px;
height:150px;
padding:10px 0;
}
.clearfix::after {
display: table;
content: “”;
clear: both;
}
.header {
background:#c0392b;
padding:5px 5px;
margin:0 50px;
min-height:25px;
}
.menu {
background:#3498DB;
margin-top:10px;
padding-left:55px;
min-height:30px;
padding-top:5px;
}
.promo {
float:left;
background:#c0392b;
width:160px;
height:50px;
margin:10px 10px 10px 50px;
padding:5px;
}
.promo:last-child {
margin-right:0;
margin-left:0;
}
.features .left {
background:#3498db;
float:left;
height:100px;
padding:5px;
margin:10px 10px 10px 50px;
width:60px;
}
.features .main {
background:#3498db;
float:left;
height:100px;
padding:5px;
margin:10px 10px 10px 0px;
width:180px;
}
.features .right {
background:#3498db;
float:left;
height:100px;
padding:5px;
margin:10px 10px 10px 0px;
width:60px;}
.footer {
clear:both;
background:#34495e;
padding:5px 55px;
height:25px;
width:340px;
}