Open In App

How to Create Abbreviation of an Element using HTML5 ?

Last Updated : 27 May, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

In this article, the abbreviation of an element can be created by using the <abbr> tag. This tag 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 represented a series of letters. The abbreviation is used to provide useful information to the browsers, translation systems, and search-engines.

Syntax:

<abbr title> Short form </abbr>

Example:




<!DOCTYPE html>
<html>
  
<head>
    <title>
        How to Create Abbreviation of 
        an Element using HTML5 ?
    </title>
  
    <style>
        body {
            text-align: center;
        }
  
        h1 {
            color: green;
        }
    </style>
</head>
  
<body>
    <h1>GeeksforGeeks</h1>
  
    <h2>
        How to Create Abbreviation of 
        an Element using HTML5 ?
    </h2>
      
    <abbr title="GeeksforGeeks">GFG</abbr>
</body>
  
</html>


Output:

Supported Browsers:

  • Google Chrome
  • Internet Explorer
  • Firefox
  • Opera
  • Safari

Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads