HTML <abbr> title Attribute Last Updated : 23 May, 2024 Comments Improve Suggest changes Like Article Like Report The HTML <abbr> title attribute is used to specify the extra information about an element. The <abbr> element represents an abbreviation or acronym. When the mouse moves over the element then it shows the information. Syntax<abbr title = "text">Attribute ValueIt contains single-value text which is used as the tooltip text for an element. This title is associated with all HTML elements. Example: This example demonstrates the use of HTML <abbr> element with the title attribute html <!DOCTYPE html> <html> <head> <title>HTML abbr title attribute</title> <style> body { text-align: center; } h1 { color: green; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h2>HTML abbr title attribute</h2> <abbr title="GeeksforGeeks">GFG</abbr> </body> </html> Output Supported BrowsersGoogle ChromeInternet ExplorerFirefoxOperaSafari Comment More infoAdvertise with us Next Article HTML <abbr> title Attribute M manaschhabra2 Follow Improve Article Tags : Web Technologies HTML HTML-Attributes Similar Reads HTML | <th> abbr Attribute The HTML <th> abbr Attribute is used to specify the shorter version of content in header cell. It does not describe any visual effect but it is used by screen readers. Syntax: <th abbr="text"> Attribute Values: text: It contains the short description of header cell content. Example: html 1 min read HTML | <td> abbr Attribute The HTML <td> abbr attribute is used to specify the shorter version of the content. This attribute is not supported by HTML 5. It does not describe any visual effect but it is used by screen readers. Syntax: <td abbr="text"> Attribute Values: text: It contains the short description of ce 1 min read HTML <a> name Attribute The HTML anchor name attribute is used to specify the name for an <a> element. It is used to reference the form data after submitting the form or to reference the element in JavaScript. Note: The <a> name attribute is not supported by HTML5. Syntax<a name="name"> Attribute Values:A 1 min read HTML title Attribute The title attribute is used to specify extra information about the element. When the mouse moves over the element then it shows the information. Supported Tags: It supports all HTML elements. Syntax: <element title = "text">Attribute Value: This attribute contains single value text which is us 2 min read HTML abbr Attribute The abbr attribute is used to specify the shorter version or abbreviation of the content. It does not describe any visual effect but it is used by screen readers. Usage: It is used in <th> and <td> tag. abbr attribute in <th> tag: Syntax: <th abbr="text"> Attribute values: te 2 min read Like