Articles → HTML 5 → Figure And Figcaption Tag In Html5
Figure And Figcaption Tag In Html5
Purpose
Syntax
<figure>
… Graphical contents
<figcaption>Description</figcaption>
</figure>
Example
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title></title>
</head>
<body>
<form action="Page1.html" method="post">
<figure>
<img src="http://gyansangrah.com/ArticleImages/introduction_to_windows_forms_using_visual_studio_one.jpg"/>
<figcaption>Screen shot for visual studio</figcaption>
</figure>
</form>
</body>
</html>
Output
Click to Enlarge
Browser Support
Internet Explorer | Firefox | Chrome | Safari | Opera | Edge |
---|
9.0 | 4.0 | 6.0 | 5.0 | 11.1 | Yes |
Video