 Online: 22179
 Online: 22179
                
            The <abbr> tag is used to mark abbreviation or acronym of the words. In earlier  <abbar> tag was acronym tag.
<body>
    It is used to mark abbreviation or acronym of the words. 
    <p>
        <abbr title="DotNetFunda.com">DNF</abbr>
        <span title="DotNetFunda.com">DNF</span>
    </p>
    Something is <span style="color:red;">good</span>.
</body>
In the above code snippet, we can notice that DotNetFunda.com is the title and DNF is placed in <abbr> tag, which means DNF is the abbrevation of DotNetFunda. Similarly the <span> tag will also give the same result as the <abbr> tag, however syntactically <abbr> tag is ideal here.
Output
Notice that in the above output, when we mouse over DNF, the tooltip appears with the full form of the DNF word.
Views: 6160 | Post Order: 63