Which tag is used to define the abbreviation of an element in HTML ? Last Updated : 09 Jun, 2023 Comments Improve Suggest changes Like Article Like Report In this article, we will discuss the tag that is used to define an abbreviation. The <abbr> tag in HTML is used to define the abbreviation or the 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: In this example, we will <abbr> tag in HTML HTML <!DOCTYPE html> <html> <body> <h1>GeeksforGeeks</h1> <h2>This is <abbr> Tag</h2> <abbr title="GeeksforGeeks">GFG</abbr> </body> </html> Output: Comment More infoAdvertise with us Next Article Which tag is used to define the abbreviation of an element in HTML ? S sravankumar_171fa07058 Follow Improve Article Tags : HTML Web technologies HTML-Tags HTML-Questions Similar Reads How to Create Abbreviation of an Element using HTML? 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 represent a series of letters. The abbreviation is used to provid 1 min read Which tag can be used as a container for the HTML elements ? There are lots of tags that can be used as a container in HTML. These tags are generally divided into three parts, i.e., the opening tag, the content (which will display in the browser), and the closing tag. The content part can contain some other tags. The opening and closing tags are used in pairs 2 min read Which tag is used to define the header for HTML document ? The <header> tag in HTML is used to define the header for a document. It contains information related to the title and heading of the related content. The <header> element is intended to usually contain the sectionâs heading (an h1-h6 element or an <hgroup> element), but this is no 2 min read Which attribute is used to declare the language of the web page in HTML ? The HTML lang attribute is used to declare the language of the element content it is used on. Some examples of languages are en for English, es for Spanish, etc. This attribute contains a single value, which is the language_code that is used to specify the language of the content that is displayed. 1 min read How to mark abbreviations and make them understandable in HTML ? In this article, we will learn how to specify a shorter version of the content in HTML. The <abbr> tag (Abbreviation) 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 lette 2 min read Like