Summary -
In this topic, we described about the <acronym> tag along with detailed example.
The <acronym> tag is not supported in HTML5. The <acronym> tag used to define an acronym. An acronym used when to spell out another word.
Creating acronyms will provide useful information to browsers, translation systems and search-engines. The title attribute will be displayed the full version of the acronym when mouse placed over it. The <abbr> is replacement of <acronym> in HTML5.
Syntax -
<acronym>.. text here.. </acronym>
Example -
<!DOCTYPE html>
<html>
<head>
<title> acronym example</title>
</head>
<body>
<p><acronym title="TutorialsCampus">TC</acronym>
is a best online tutorials library.</p>
</body>
</html>
Output -
TC is a best online tutorials library.