<abbr> Tag in HTML 5

I am going to explain about Abbr tag.
  • 2171

Definition

The <abbr> tag is used for defining an abbreviation for the articles. The <abbr> tag represents an abbreviation or acronym, like "WWW" or "w3c". The title attribute must contain an expansion of the abbreviation used. Their is no diffrences between HTML 4.01 and HTML5 in <abbr> tag. The <abbr> tag is supported to all major browsers such as Internet Explorer,Mozila,Opera,Safari.

Lets take an example of <abbr> tag

<html>
<
head>
    <title>Example For
        <abbr>
        Tag </title
>

</
head>
<
body>
    The
    <abbr title="World Health Organization">
        that</abbr>
    was founded in 1948.

</
body>
</
html>

 

Output

You may also read more about HTML 5 here

Ask Your Question 

Got a programming related question? You may want to post your question here

Programming Answers here

© 2020 DotNetHeaven. All rights reserved.