References

Collection of references for web development.

HTML figure tag

Description

The HTML <figure> element represents self-contained content, this could be used for illustrations, diagrams, photos, etc.

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>