Open In App
Related Articles

HTML abbr Tag

Improve Article
Improve
Save Article
Save
Like Article
Like

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:

  • title: It is used to specify extra information about the element. When the mouse moves over the element then it shows the information.

Example: 

html




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


Output: 

abbrTag.png

abbr Tag

Supported Browser: 

  • Google Chrome 2 and above
  • Edge 12 and above
  • Internet Explorer 7 and above
  • Firefox 1 and above
  • Opera
  • Safari
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 05 Jul, 2023
Like Article
Save Article
Previous
Next
Similar Reads
Complete Tutorials