HTML | <th> abbr Attribute Last Updated : 01 Aug, 2022 Comments Improve Suggest changes Like Article Like Report 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 <!DOCTYPE html> <html> <head> <title>HTML th abbr Attribute</title> </head> <body> <h1>GeeksforGeeks</h1> <h2>HTML th abbr Attribute</h2> <table border="1"> <tr> <th abbr="name of student">NAME</th> <th abbr="age of student">AGE</th> <th abbr="branch name">BRANCH</th> </tr> <tr> <td>BITTU</td> <td>22</td> <td>CSE</td> </tr> <tr> <td>RAKESH</td> <td>25</td> <td>EC</td> </tr> </table> </body> </html> Output: Supported Browsers: The browser supported by HTML <th> abbr attribute are listed below: Google Chrome 1 and aboveEdge 12 and aboveInternet ExplorerFirefox 1 and aboveSafariOpera Comment More infoAdvertise with us Next Article HTML | <th> abbr Attribute J jit_t Follow Improve Article Tags : Web Technologies HTML HTML-Attributes Similar Reads 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 <abbr> title Attribute 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-val 1 min read HTML <a> type Attribute The HTML <a> type attribute specifies the MIME type of the linked document. It is not widely used, the type attribute can help browsers to understand the type of content that is being linked. It can be beneficial for certain applications and optimizations.Syntax<a type="media_type">Attri 1 min read HTML <th> char Attribute The HTML <th> char attribute is used to specify the alignment to the character of content in a table header cell. It only contains the char align attribute. Its default value is a decimal point for page language. Note: It is not supported by HTML5. Syntax: <th char="character"> Attribute 1 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