HTML figure and caption
Use a figure element to tag a photo in a document and a figcaption element to define a caption for the photo.
Here's an example of the tags FIGURE, IMG e FIGCAPTION.
HTML code:
x
<figure>
<img src="log_laranja1.png" alt="Exemplo tag IMG html" title="Exemplo tag IMG html" />
<figcaption>Legenda da foto</figcaption>
</figure>
<img src="log_laranja1.png" alt="Exemplo tag IMG html" title="Exemplo tag IMG html" />
<figcaption>Legenda da foto</figcaption>
</figure>