Trying to create a grid layout using Bootstrap, I need some assistance. Check out the image for reference: enter image description here
Here's the code I've been working on, but I can't seem to get it right:
<section id="section-2">
<div class="container">
<div class="row">
<div class="col">
<img src="./images/720685.png" alt="" width="300px" height="500px">
</div>
<div class="col">
<img src="./images/1109554.png" alt="" width="300px" height="200px">
</div>
<div class="col">
<img src="./images/736462.png" alt="" width="300px" height="200px">
</div>
<div class="col">
<img src="./images/Dusk Launch13727_square.jpg" alt="" width="300px" height="200px">
</div>
<div class="col">
<img src="./images/Dusk Launch13727_square.jpg" alt="" width="300px" height="200px">
</div>
<div class="col">
<img src="./images/Dusk Launch13727_square.jpg" alt="" width="300px" height="200px">
</div>
<div class="col">
<img src="./images/Dusk Launch13727_square.jpg" alt="" width="300px" height="200px">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col">
<img src="./images/720685.png" alt="" width="300px" height="200px">
</div>
<div class="col">
<img src="./images/1109554.png"alt="" width="300px" height="200px">
</div>
</div>
</div>
</section>
Any suggestions on how to solve this? Feel free to share your thoughts.