<!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>
<link rel="stylesheet" href="style.css">
<style>
.container {
display: grid;
grid-template-columns: 1fr 1fr;
min-height: 100vh;
}
.box1 { background: red; }
.box2 {
background: orange;
grid-row: span 3;
}
.box3 {
background: yellow;
}
.box4{
background-color: aqua;
}
</style>
</head>
<body>
<div class="container">
<div class="box1">box1</div>
<div class="box2">box2</div>
<div class="box3">box3</div>
<div class="box4">box4</div>
</div>
</body>
</html>