I have this CSS code:
.centered-and-cropped {
object-fit: cover;
border-radius:50%;
width: 100px;
height: 100px;
}
And I have this html code:
<center>
<img class="centered-and-cropped" src="image.jpg" alt="Bear1">
<img class="centered-and-cropped" src="image.jpg" alt="Bear2">
<img class="centered-and-cropped" src="image.jpg" alt="Bear3">
</center>
<center>
<img class="centered-and-cropped" src="image.jpg" alt="Bear4">
<img class="centered-and-cropped" src="image.jpg" alt="Bear5">
<img class="centered-and-cropped" src="image.jpg" alt="Bear6">
</center>
Here is an image that shows how it looks like:
I would like to add caption under Each of the images like this:
How can I do that so each image has a caption right under that?