Behold, here lies the image:
I'm uncertain about how to align the text "Location, Type, Price, $2,250" exactly like in the image. Also, as a newcomer to bootstrap, I would appreciate feedback on whether my approach is correct.
.image-box img {
width: 100%;
}
.image-box h4 {
text-align: center;
background-color: #8C1211;
color: #FFFFFF;
padding: 10px 0;
font-weight: bold;
margin: 0;
}
.image-box .description {
background-color: #D6D6D6;
border-radius: 4px;
}
<div class="text-container">
<div class="row">
<div class="col-sm-3 image-box">
<img src="images/realty.jpg">
<h4>REAL ESTATE</h4>
<div class="description">
<p>Beautiful and spacious 4.5 rooms: 1 million rent</p>
<p>Location<span>Suchy</span>
<p>
<p>Price<span>$2,250</span>
</p>
</div>
</div>
<!-- Repeat for additional columns -->
</div>
</div>