Home  >  Article  >  Web Front-end  >  How to include abbreviations in HTML?

How to include abbreviations in HTML?

WBOY
WBOYforward
2023-09-02 14:49:021240browse

How to include abbreviations in HTML?

HTML tag is used to indicate abbreviations. You can try running the following code to learn how to include abbreviations 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>

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!

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete