HTML tag is used to indicate abbreviations. You can try running the following code to learn how to include abbreviations in HTML -
<!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>
The above is the detailed content of How to include abbreviations in HTML?. For more information, please follow other related articles on the PHP Chinese website!