HTML HTML Tutorial HTML Forms HTML Graphics HTML Media HTML APIs HTML Tags



HTML Tag: abbr

The HTML tag abbr stands for "abbreviation". It is used to define an abbreviation or acronym for a word or phrase. The abbr tag is a semantic tag that helps to improve the accessibility and usability of web pages.

The abbr tag is used to provide a short form or abbreviation for a longer word or phrase. This can be helpful for users who may not be familiar with a particular term or acronym. When a user hovers over the abbreviation, the full form of the word or phrase is displayed as a tooltip. This can help to improve the readability and understanding of the content on a web page.

The abbr tag can also be used to provide additional information about an abbreviation or acronym. This can be done by using the title attribute to provide a description of the term. When a user hovers over the abbreviation, the description is displayed as a tooltip. This can be helpful for users who may not be familiar with the term or acronym.

Here are some examples of how the abbr tag can be used:

Example 1:

Using the abbr tag to define an abbreviation:

<p>The <abbr>HTML</abbr> specification is maintained by the W3C.</p>

Example 2:

Using the abbr tag to provide additional information about an abbreviation:

<p>The <abbr title="Hypertext Markup Language">HTML</abbr> specification is maintained by the W3C.</p>

Example 3:

Using the abbr tag to define an acronym:

<p>The <abbr>CSS</abbr> specification is maintained by the W3C.</p>

Example 4:

Using the abbr tag to provide additional information about an acronym:

<p>The <abbr title="Cascading Style Sheets">CSS</abbr> specification is maintained by the W3C.</p>

Activity