I'm a beginner with Bootstrap 5 and I have a question about how to position text inside an image, similar to the first screenshot provided:
https://i.sstatic.net/HVdie.jpg
I tried using card-img but it didn't work. I also attempted to use cols, but no luck after hours of searching
<!-- Bootstrap-5 -->
<link href="https://cdn.jsdelivr.net/npm/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="3d5f5252494e494f5c4d7d08130c130e">[email protected]</a>/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<!-- Body -->
<div class="container">
<div class="row justify-content-center gx-2">
<div class="col-6">
<div class="card">
<img width="100%" class="card-img rounded" src="./Assets/Blog/image 32.png" alt=" ">
<div class="card-img-overlay text-white d-flex flex-column justify-content-center">
<h4 class="card-title">dasdsa </h4>
<p class="card-text">123 </p>
</div>
</div>
</div>
</div>
<div class="row justify-content-center gx-2 ">
<div class="col-md-2 col-lg-2">
<div class="card">
<img width="100%" class="card-img rounded" src="./Assets/Blog/image 33.png" alt=" ">
<div class="card-img-overlay text-white d-flex flex-column justify-content-center">
<p class="card-text">123 </p>
<div class="link d-flex">
<a href="#" class="card-link text-warning">Read More</a>
<a href="#" class="card-link text-warning">Book a Trip</a>
</div>
</div>
</div>
</div>
</div>
<div class="row justify-content-center gx-2">
<div class="col-md-2 col-lg-2 ">
<div class="card">
<img width="100%" class="card-img rounded" src="./Assets/Blog/image 34.png" alt=" ">
<div class="card-img-overlay text-white d-flex flex-column justify-content-center">
<p class="card-text">123 </p>
<div class="link d-flex">
<a href="#" class="card-link text-warning">Read More</a>
<a href="#" class="card-link text-warning">Book a Trip</a>
</div>
</div>
</div>
</div>
</div>
<div class="row justify-content-center gx-2">
<div class="col-md-2 col-lg-2">
<div class="card">
<img width="100%" class="card-img rounded" src="./Assets/Blog/image 35.png" alt=" ">
<div class="card-img-overlay text-white d-flex flex-column justify-content-center">
<p class="card-text">It is the seventh most populous city in Italy, at the heart of a metropolitan area of about one million people. </p>
<div class="link d-flex">
</div>
</div>
</div>
</div>
</div>