I'm a beginner in front-end development and I'm struggling to center the text below the image within this div. I want the text centered just below the image. I'm using Bootstrap for this project, and here's the code snippet I'm working with:
<div class="container">
<div class="row">
<div class="col">
<a href="/abrircampanha">
<img src="../images/IconAbrirCampanha.png" class="img-thumbnail" alt="Abrir">
</a>
</div>
<div class="col">
<a href="/abrircampanha">
<img src="../images/IconNovaCampanha.png" class="img-thumbnail" alt="Abrir">
<h3 class="h6 mb-3"> Abrir campanha </h3>
</a>
</div>
</div>
</div>
How can I effectively center the text underneath the image?