<acronym>
displays a message or abbreviation.
The value of the <acronym>
element's title
attribute
specifies the message that will be displayed in a tooltip.
This tag is often confused with <abbr>
and is not included in HTML5 as of late 2009.
<acronym> |
Yes | Yes | Yes | Yes | Yes |
The <acronym> tag is deprecated in HTML5. Use the <abbr> tag instead.
The <acronym> tag supports the Global Attributes in HTML.
The <acronym> tag supports the Event Attributes in HTML.
None.
A demo showing how to use acronym tag.
<html>
<body>
<acronym title="Hyper Text Markup Language">HTML</acronym> <br/>
<p><acronym title="Extensible Markup Language">XML</acronym>
</body>
</html>