Here's what I have accomplished so far:
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<section class="row">
<div class="col-xs-12 col-md-2"></div>
<div class="col-xs-12 col-md-4 blog-post1">
<img src="./assests/1.png" alt="" />
<div class="overley-nav">
<input type="button" value="Travel" />
<h3>The Complete Guide for Travel in London</h3>
<p>by MARIE NGUYEN / DECEMBER 13,2016</p>
</div>
</div>
<div class="col-xs-12 col-md-4 blog">
<div class="blogpost2">
<img src="./assests/2.png" alt="" />
<div class="overlay-nav2">
<input type="button" value="Travel" />
<h4>The Complete Guide</h4>
</div>
</div>
<div class="blogpost3">
<img src="./assests/3.png" alt="" />
<div class="overlay-nav2">
<input type="button" value="Travel" />
<h4>The Complete Guide</h4>
</div>
</div>
</div>
<div class="col-xs-12 col-md-1"></div>
</section>
In the above code snippet, I've created a section within a row and allocated specific columns to the nested div elements using Bootstrap classes. However, I'm facing issues with the responsiveness of the images and text as I resize the browser window.