The HTML <abbr> tag is used for indicating an abbreviation. You can try to run the following code to learn how to include an abbreviation in HTML −
Example
<!DOCTYPE html> <html> <head> <title>HTML abbr Tag</title> </head> <body> <p> <abbr title = "Private">pvt.</abbr> <br /> <abbr title = "World Health Organization">WHO</abbr> promotes the global game. <br /> </p> </body> </html>