Home Tutorials HTML Tutorial Figure and Figcaption
Figure and Figcaption

Figure and Figcaption


40. Figure and Figcaption

The <figure> element groups self-contained content such as images, diagrams, or code listings, and <figcaption> provides a caption. These are semantic HTML5 elements.

Syntax

<figure>
    <img src="image.jpg" alt="text">
    <figcaption>Caption</figcaption>
</figure>

Example

<figure>
    <img src="tree.jpg" alt="Tree" width="150">
    <figcaption>Green tree in garden</figcaption>
</figure>

Output

An image appears with a caption below it.
Example

🏋️ Test Yourself With Exercises

Take our quiz on Figure and Figcaption to test your knowledge.

Browse Quizzes »