HTML <figcaption> Tag
Example
Use a <figure> element to mark up a photo in a document. The <figure> element also contains a caption:
<figure>
<img src="img_pulpit.jpg" alt="The Pulpit Rock"width="304" height="228">
<figcaption>Fig1. - A view of the pulpit rock in Norway.</figcaption>
</figure>
<img src="img_pulpit.jpg" alt="The Pulpit Rock"width="304" height="228">
<figcaption>Fig1. - A view of the pulpit rock in Norway.</figcaption>
</figure>
Post a Comment