Horje
How to create HTML <abbr> for Abbreviations

The HTML <abbr> tag defines an abbreviation or an acronym, like "HTML", "CSS", "Mr.", "Dr.", "ASAP", "ATM".

Marking abbreviations can give useful information to browsers, translation systems and search-engines.

Tip: Use the global title attribute to show the description for the abbreviation/acronym when you mouse over the element. 


Example of HTML <abbr> for Abbreviations

<p>The <abbr title="World Health Organization">WHO</abbr> was founded in 1948.</p>

Full Example of HTML <abbr> for Abbreviations

index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>
<p>The <abbr title="World Health Organization">WHO</abbr> was founded in 1948.</p>
<p>Marking up abbreviations can give useful information to browsers, translation systems and search-engines.</p>
</body>
</html>

Output should be:

Full Example of HTML <abbr> for Abbreviations





Related Articles
HTML Quotations HTML Quotations
How to create HTML <blockquote> for Quotations HTML Quotations
How to create HTML <q> for Short Quotations HTML Quotations
How to create HTML <abbr> for Abbreviations HTML Quotations
How to create HTML <address> for Contact Information HTML Quotations
How to create HTML <cite> for Work Title HTML Quotations
How to create HTML <bdo> for Bi-Directional Override HTML Quotations

Single Articles
Example of HTML <abbr> for Abbreviations HTML Quotations
Full Example of HTML <abbr> for Abbreviations HTML Quotations

Category :
Web Tutorial
Sub Category :
HTML Quotations
Uploaded by :
Admin


Read Article
https://horje.com/learn/1434/reference