<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style type="text/css">
.box{
width: 1350px;
height: 70px;
background-color: blue;
margin: 10px auto;
}
.box1{
width: 1350px;
height:600px;
background-color: pink;
margin:10px auto;
}
.bos2{
width: 1350px;
height:462px;
background-color: red;
margin:10px auto;
}
.box3{
width: 264px;
height: 333px;
background-color: gold;
float: left;
margin: 30px ;
}
.box4{
width: 246px;
height: 333px;
background-color: gold;
float: left;
margin: 30px ;
}
.box5{
width: 246px;
height: 333px;
background-color: green;
float: left;
margin: 30px ;
}
.box6{
width: 246px;
height: 333px;
background-color: green;
float: left;
margin: 30px ;
}
</style>
</head>
<body>
<div class="box"></div>
<div class='box1'></div>
<div class="box2">
<div class="box3"></div>
<div class="box5"></div>
<div class="box4"></div>
<div class='box6'></div>
</div>
</body>
</html>