References

Collection of references for web development.

HTML figcaption tag

Description

The HTML <figcaption> element represents a caption for a <figure> element.

Example

<figure>
	<img src="https://codeshack.io/web/img/alogo.png" alt="Example Logo" width="150" height="50">
	<figcaption>Figure 1 - The example logo designed by David Deacon.</figcaption>
</figure>