HTML: Figure Tag

By Xah Lee. Date: . Last updated: .
figure
Used for including figures with caption (as in a book), typically a illustration, photo, diagram, but can also be video, animation, table, code example, etc.
figcaption
  • For figure caption.
  • Must be inside figure.

🛑 WARNING: the figcaption tag must be the first or last child of the figure tag.

example:

<figure>
<img src="i/tile_A.png" alt="tile A" width="128" height="128" />
<figcaption>
tile A
</figcaption>
</figure>

browser shows:

tile A
tile A

Browser Support

HTML image tags