How to include an abbreviation in HTML?


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>

Updated on: 02-Mar-2020

121 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements