Open In App

HTML <abbr> Tag

The <abbr> tag(Abbreviation) in HTML is used to define the abbreviation or short form of an element. The <abbr> and <acronym> tags are used as shortened versions and used to represent a series of letters. The abbreviation is used to provide useful information to browsers, translation systems, and search-engines.

Syntax: 



<abbr title=""> Short form </abbr>

Attribute: This tag accepts an optional attribute as mentioned above and described below:

 



Example: This example describes the abbr tag.




<!DOCTYPE html>
<html>
  
<body>
    <h1>GeeksforGeeks</h1>
    <h2>This is abbr Tag</h2>
    <abbr title="GeeksforGeeks">GFG</abbr>
</body>
  
</html>

Output: 

abbr Tag

Supported Browsers: 

Article Tags :