HTML: the abbr element

The <abbr> element marks an abbreviation or acronym. Use its title attribute when readers need the full name.

What you will learn

Minimal example

<p><abbr title="HyperText Markup Language">HTML</abbr> is used to structure a web page.</p>

The visible text stays short, while the title value gives the expanded name. Browsers commonly show it as a tooltip when the pointer rests on the abbreviation.

When to use it

Common mistakes