
- HTML Tutorial
- HTML - Home
- HTML - Overview
- HTML - Basic Tags
- HTML - Elements
- HTML - Attributes
- HTML - Formatting
- HTML - Phrase Tags
- HTML - Meta Tags
- HTML - Comments
- HTML - Images
- HTML - Tables
- HTML - Lists
- HTML - Text Links
- HTML - Image Links
- HTML - Email Links
- HTML - Frames
- HTML - Iframes
- HTML - Blocks
- HTML - Backgrounds
- HTML - Colors
- HTML - Fonts
- HTML - Forms
- HTML - Embed Multimedia
- HTML - Marquees
- HTML - Header
- HTML - Style Sheet
- HTML - Javascript
- HTML - Layouts
- HTML References
- HTML - Tags Reference
- HTML - Attributes Reference
- HTML - Events Reference
- HTML - Fonts Reference
- HTML - ASCII Codes
- ASCII Table Lookup
- HTML - Color Names
- HTML - Entities
- HTML - Fonts Ref
- HTML - Events Ref
- MIME Media Types
- HTML - URL Encoding
- Language ISO Codes
- HTML - Character Encodings
- HTML - Deprecated Tags
Create self-contained content in HTML5
Use the <figure> tag to create self-contained content. You can try to run the following code to implement <figure> tag in HTML5 −
Example
<!DOCTYPE html> <html> <head> <title>HTML figure Tag</title> </head> <body> <h2>Tutorialspoint Coding Ground</h2> <figure> <img src = "https://www.tutorialspoint.com/videotutorials/images/coding_ground_home.jpg"/> </figure> </body> </html>
- Related Articles
- How do we display the main content in the document in HTML5?
- Create editable content in an HTML document
- CSS content: attr() on HTML5 progress doesn't work
- Create a draggable paragraph in HTML5
- Create a hidden paragraph in HTML5
- How to create a self-signed certificate using PowerShell?
- How to create Definition Lists in HTML5?
- Creating content with HTML5 Canvas much more complicated than authoring with Flash
- How to create android Notification intent to clear it self?
- Create a pattern with HTML5 Canvas
- Create a text inside circles in HTML5 Canvas
- Tips to create shareable content on social media
- How to copy the content of one HTML5 Canvas to another Canvas locally?
- Contained Interval in C++
- How to create Html5 compliant Javadoc in Java 9?

Advertisements