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
What is 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 AbbreviationsHTML Quotations
Full Example of HTML <abbr> for AbbreviationsHTML Quotations

Read Full:
HTML Quotations
Category:
Web Tutorial
Sub Category:
HTML Quotations
Uploaded:
1 year ago
Uploaded by:
Admin
Views:
50


Reffered: https://www.w3schools.com/html/tryit.asp?filename=tryhtml_formatting_abbr

Share on: