+ 3
How to give a caption or text to the image?
Please 😌 Give the code for this and give code to how to give caption
2 Respostas
+ 3
figcaption tag
+ 3
As already stated by @Abdel just want to enhance it a bit:
<figure>
/* image source here */
<img src="" alt="">
/* caption or text here */
<figcaption>image text</figcaption>
</figure>