Решил на 97%, подскажите можно ли так кодить?

Скорей всего буду еще раз проходить курс так как делал все подбором. А как мне кажется нужно понимать что пишешь.

  <div class="head">
        <div class="header" >Header</div>
        <div class="menu"> Menu</div>
            <div class=promo>
                <div class="promo1">Promo 1</div>
                <div class="promo2"> Promo 2</div>
            </div>
    </div>
   
  <div class="features ">
            <div class="layout-column">
                left
            </div>
            <div class="layout-column">
                Main
            </div>
            <div class="layout-column">
                Right
            </div>
        </div>
        
  <div class="footer"> Footer</div>

html,
body {
margin: 0;
padding: 0;
}

body {
width: 450px;
height: 335px;
font-family: “Arial”, sans-serif;
font-size: 10px;
color: white;
}

.head{
background: #34495e;
display: table;
width:450px

}

.header{
background: #c0392b;
height:35px;
width:345px ;
margin: 10px auto;
padding-left: 5px;

}

.menu{
background:#3498DB;
height: 35px;
width: 400px;
padding-left: 50px;
}
.promo{
display: table;
margin: 10px auto;
}

.promo1{
background: #c0392b;
height:50px;
width:160px ;
margin-right:5px;
padding: 5px;
float:left;
}

.promo2{
background: #c0392b;
height:50px;
width:160px;
margin-left:5px;
padding: 5px;
float:right;
}

.features {
margin: 10px auto;
display: table;
}

.features .layout-column {
float: left;
width: 190px;
min-height: 110px;
margin-right: 10px;
background: #3498DB;
}
.features .layout-column:first-child {
padding: 0px;
width:70px
}

.features .layout-column:last-child {
margin-right: 0;
width:70px
}

.footer {
background: #34495e;
height: 40px;
padding-left: 50px;

}
/*
Используемые цвета:
#34495e – мокрый асфальт
#c0392b – красный
#3498DB – синий
*/