Use the <acronym> tag in HTML to include an acronym. The HTML <acronym> tag is used for indicating an acronym. You can try to run the following code to learn how to implement <acronym> tag in HTML −
Example
<!DOCTYPE html> <html> <head> <title>HTML acronym Tag</title> </head> <body> <p><acronym title = "Hypertext Markup Language">HTML</acronym></p> </body> </html>