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

HTML5 Tutorial FeedBurner

The HTML5 <abbr> Tag  
The main purpose of the HTML5 <abbr> Tag is to indicate that the text is an abbreviation or an acronym. For example, if it is necessary to put acronyms like USA or UAE, the HTML5 <abbr> Tag is utilized.

Adding the HTML5 <abbr> Tag is necessary because it allows browsers, spell checkers, search engine crawlers for indexing and translation systems to identify the acronym or abbreviation. That way, additional information can also be provided when the text is viewed using the web browsers.

The HTML5 <abbr> Tag is used this way:

The <abbr title="United States of America">USA</abbr> declared independence in July 4, 1776.

The <abbr> Tag is used similarly for both HTML5 and HTML4.01. It is also supported by the major web browsers such as Firefox, Google Chrome, Internet Explorer, Safari and Opera.

The HTML5 <abbr> Tag supports the Events Attributes. Even the Global Attributes is supported by this tag. The Global attribute is important for HTML5 <abbr> Tag because this shows the full definition of the acronym or abbreviation once the cursor hovers over it.

Print HTML5 <abbr> Tag Bookmark HTML5 <abbr> Tag

Related Articles  
The HTML5 <link> Tag
The HTML5 <link> tag is used to establish a connection between the web page and another document. HTML5 added the ...
The HTML5 <th> Tag
The HTML5 <th> tag is the tool in adding a header to the table that is placed within an HTML document. It has to ...
The HTML5 <acronym> Tag
The HTML5 <acronym> Tag is not supported in HTML5. It is originally used for HTML4.01 to define the acronyms.
The HTML5 <body> tag
The HTML5 <body> tag is an element which defines the coding of an HTML document where all the contents of the ...
The HTML5 <object> Tag
The HTML5 <object> tag is the key which enables HTML authors to do this. When embedding video, audio, PDF, Flash ...
The HTML5 <!--…--> Comment Tag
The HTML5 <!--…--> tag is mainly utilized for adding comment in the source code. However, do not expect the ...
More