HTML <acronym> Tag
HTML acacs are used to denote uppercase names.
Demo:-
NCC : – National Cadet Corps.
HTML : – Hypertext Markup Language.
Example:-
<!DOCTYPE html>
<html>
<head>
<title>HTML acronym Tag</title>
</head>
<body>
<h1>promotes the global game.</h1>
<p><acronym title = "HyperText Markup Language">HTML</acronym></p>
</body>
</html>