ACRONYM (<acronym>) Tag
0 4086
p>The <acronym> tag in HTML acts like an inline element used to define the acronym. The working is identical to <abbr tag> except one difference i.e. <acronym> tag is not supported in HTML5.
Due, to this reason, this tag is deprecated, nowadays <abbr tag> is more preferred.
Use of <acronym> tag
It can be used to give mandatory information to browsers, search engines or any translation systems. Whenever there is a need to shorten any phrase, this tag is applicable.
Browsers Support:
Google Chrome | Firefox | Safari | Internet Explorer |
Code:
<!DOCTYPE html>
<html>
<head>
<title> Acronym Tag </title>
</head>
<body>
<h2> acronym tag example </h2>
<p><b> Hover mouse over the content and see the acronym </b></p>
<acronym title="Hypertext Markup Language"> HTML </acronym>
<br>
<br>
<p><strong>Note:</strong> The acronym element is not supported in HTML5. /p>
</body>
</html>
Output:
Share:
Comments
Waiting for your comments