40 lines
762 B
HTML
40 lines
762 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
<style>
|
|
.box {
|
|
width: 200px;
|
|
height: 200px;
|
|
float: left;
|
|
}
|
|
|
|
.box1 {
|
|
background: red;
|
|
}
|
|
|
|
.box2 {
|
|
background: rgb(0, 255, 4);
|
|
}
|
|
|
|
.box3 {
|
|
width: 200px;
|
|
height: 200px;
|
|
background: blue;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="main">
|
|
<div class="box box1"></div>
|
|
<div class="box box2"></div>
|
|
</div>
|
|
<div class="box3">222</div>
|
|
</body>
|
|
|
|
</html> |