Acronym Tag in HTML
Adding all the first letters of a name is called an acronym, for ex: ISRO, NASA, etc. We can inside any acronym word in HTML using the <acronym> tag. It is paired tag, so we must create opening and closing acronym tag. This tag has “title” attribute, If we give the full form of the acronym inside this tag, the full form will be displayed when the user hovers over the acronym.
Ex:
<p>The <acronym title="Indian Space Research Organisation">ISRO</acronym>
is the space agency of the Government of India headquartered in the city of Bangalore. </p>
In the above code, we have created an <acronym> and inside it we have put the word “ISRO”.
Then we use the title attribute of acronym tag and gave the full form of ISRO.
See, the output when user hover the word ISRO the fulform is displayed.
Output: