HTML Figure e Legenda
Use um elemento figure para marcar uma foto em um documento e um elemento figcaption para definir uma legenda para a foto.
Segue exemplo das tags FIGURE, IMG e FIGCAPTION.
codigo HTML
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>