The <acronym> tag in HTML is used to define the acronym. <acronym> is used to spell out another word. It is used to give useful information to browsers, translation systems and search-engines. This tag is not supported in HTML5.
Syntax:
<acronym title> Short Form </acronym>
Example:
<!DOCTYPE html> < html > < head > < title >ruby tag</ title > < style > body { text-align:center; } h1 { color:green; } </ style > </ head > < body > < h1 >GeeksforGeeks</ h1 > < h2 >< acronym > Tag</ h2 > < acronym title = "GeeksgorGeeks" >GFG</ acronym >< br > < acronym title = "Operating System" >OS</ acronym > </ body > </ html > |
Output:
Browser supported: The browser supported by <acronym> tag are listed below:
- Chrome
- Internet Explorer
- Firefox
- Safari
- Opera
leave a comment
0 Comments