<!DOCTYPE html>
<html>
<head>
<style>
.grid-container {
display: grid;
grid-template-areas: 'myArea myArea myArea . .';
gap: 10px;
background-color: dodgerblue;
padding: 10px;
}
.grid-container > div {
background-color: #f1f1f1;
color:#000;
padding: 10px;
font-size: 30px;
text-align: center;
}
.item1 {
grid-area: myArea;
}
</style>
</head>
<body>
<h1>The grid-area Property</h1>
<p>You can use the <em>grid-area</em> property to name grid items.</p>
<p>Item1, is called "myArea" and will take up the place of three columns (out of five):</p>
<div class="grid-container">
<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>