The <figure> tag in HTML is used to group image or graphic content along with their caption.
This tag is often used in conjunction with the <figcaption> tag to define a caption for the image.
<figure>
<img src="https://www.w3schools.com/bootstrap5/img_avatar3.png" alt="Mô tả ví dụ">
<figcaption>Đây là một ví dụ về tag figure</figcaption>
</figure>
Result