<!DOCTYPE html>
<html>
<head>
<title>Figure Tag</title>
</head>
<body>
<figure>
<img src="figure-tag.jpg" alt="sample image" width="300" height="200">
<p>This is figure tag is not supported in Internet Explorer 8 and earlier versions.</p>
</figure>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>Figure Tag</title>
</head>
<body>
<figure>
<img src="figure-tag.jpg" alt="sample image" width="300" height="200">
<figcaption>Figcaption :- Sample Image</figcaption>
</figure>
</body>
</html>