×

Html & Html5

The World's best Software Development Study Portal

HTML figure tag


This <figure> tag is use to display the group of images with some embedded content. However we have <image> also but in <image> we can't able to display group of images with some content embeded to the image.

Let's understand this by the following example:


<p> I love our Indian Army </p>
<figure>
<img src="image/army.jpg" alt="army">
</figure>

Output:


army


\