HTML - <acronym> Tag



The HTML <acronym> tag is used for indicating an acronym.

This tag is no longer recommended as it is deprecated and not supported in HTML5. Instead you can use <abbr> tag

Example

Consider the following example, where we are going to use the <acronym> tag.

<!DOCTYPE html>
<html>

   <head>
      <title>HTML acronym Tag</title>
   </head>

   <body>
      <p><acronym title = "HyperText Markup Language">HTML</acronym></p>
   </body>

</html>

When we run the above code, it will generate an output consisting of the text on the webpage

Global Attributes

This tag supports all the global attributes described in HTML Attribute Reference

Event Attributes

This tag supports all the event attributes described in HTML Events Reference

Advertisements