<!DOCTYPE html>
<html>
<head>
<style>
body {
background-color:#E7E9EB;
}
#myDIV {
height:300px;
display: grid;
gap: 10px;
background-color: #2196F3;
padding: 10px;
grid-template-areas: 'myArea myArea .' 'myArea myArea .';
}
#myDIV div {
background-color: rgba(255, 255, 255, 0.8);
text-align: center;
padding: 20px 0;
font-size: 30px;
}
.item1 {
grid-area: myArea;
}
</style>
</head>
<body>
<h1>The grid-template-areas property</h1>
<div id="myDIV">
<div class="item1">1</div>
<div class="item2">2</div>
<div class="item3">3</div>
<div class="item4">4</div>
<div class="item5">5</div>
<div class="item6">6</div>
</div>
</body>
</html>