Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

How to Create Abbreviation of an Element using HTML5 ?

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

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
My Personal Notes arrow_drop_up
Last Updated : 27 May, 2020
Like Article
Save Article
Similar Reads
Related Tutorials