Logo
  Sunday, May 20, 2012
Sign-In  |  Sign-Up  |  Contact Us  | Bookmark |  RSS Feed

HTML5 Tutorial FeedBurner

The HTML5 <figure> Tag  
The HTML5 <figure> tag is primarily used for adding self-contained content within the document. It is utilized for placing diagrams, images, code listings and illustrations.

The HTML5 <figure> tag is newly introduced in HTML5. Hence, this is not recognized nor used in HTML4.01.

This is an example of how the HTML5 <figure> tag is used:

<figure>

<img src="MyFigureHouse.jpg" alt="My Fugure House" width="300" height="200" />

</figure>

 

There should not be any problems when it comes to using the HTML5 <figure> tag. It is recognized by the major web browsers such as Internet Explorer, Firefox, Google Chrome, Safari and Opera. The HTML5 <figure> tag is also capable of supporting the Event Attributes and Global Attributes in HTML5.

Print HTML5 <figure> Tag Bookmark HTML5 <figure> Tag

Related Articles  
The HTML5 <ins> Tag
The HTML5 <ins> tag is not complicated to apply within a document since it supports the Global Attributes and ...
The HTML5 <iframe> Tag
There are times when inserting or embedding another document within an HTML document is necessary. During such ...
The HTML5 <form> Tag
The HTML5 <form> tag is utilized such that a form that can be answered by the user may be incorporated within the ...
The HTML5 <header> Tag
Typically, the HTML5 <header> tag is where details like headings, subheadings and version information are ...
The HTML5 <a> Tag
The HTML5 <a> tag is essential when it comes to determining a particular hyperlink. The <a> tag enables to ...
The HTML5 <progress> Tag
Using the HTML5 <progress> tag is not as easy as utilizing other tags for HTML5. It has limited compatibility ...
More