I've been experimenting with creating a column layout that spans three columns across the top and two rows down. So far, I've managed to create the first row but I'm unsure of how to split it into the second row.
.container {
display: flex;
justify-content: space between;
}
.column {
display: inline block;
padding: 0.5em;
display: block;
width: 33.333%;
}
<div class = "container">
<div class="column"><img src = "image.jpg" alt = "photo of title and logo" width="600" height="300"></div>
<div class="column"><img src = "image.jpg" alt = "photo of title and logo "width="600" height="300"></div>
<div class="column"><img src = "image.jpg" alt = "photo of wortherspoons" width="600" height="300"></div>
<div class="column"><img src = "image.jpg" alt = "photo of title and logo" width="600" height="300"></div>
<div class="column"><img src = "image.jpg" alt = "photo of title and logo "width="600" height="300"></div>
<div class="column"><img src = "image.jpg" alt = "photo of wortherspoons" width="600" height="300"></div>
</div>