Articles → HTML 5 → Figure And Figcaption Tags In Html5
Figure And Figcaption Tags 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 method="post">
<figure>
<img src="svg_circle_html5_one.jpg" />
<figcaption>Output of svg circle</figcaption>
</figure>
</form>
</body>
</html>
Try It
Output
Browser Support
Internet Explorer | Firefox | Chrome | Safari | Opera | Edge |
---|
9.0 | 4.0 | 6.0 | 5.0 | 11.1 | Yes |
Video