Figure tag depicts unit of content such as diagrams,images Photos etc on a web page. Though img tag is already available in html but figure tag is included in html5 to handle various images,diagrams , photos etc with some embedded content.
below is the Example:
<!DOCTYPE>
<html>
<body>
<h4>This is the Example of figure tag of HTML5 .</h4>
<figure>
<img src="/images/abc.jpg" alt="FindNerd"/>
</figure>
</body>
</html>
0 Comment(s)