
- HTML Tutorial
- HTML - Home
- HTML - Overview
- HTML - Basic Tags
- HTML - Elements
- HTML - Attributes
- HTML - Formatting
- HTML - Phrase Tags
- HTML - Meta Tags
- HTML - Comments
- HTML - Images
- HTML - Tables
- HTML - Lists
- HTML - Text Links
- HTML - Image Links
- HTML - Email Links
- HTML - Frames
- HTML - Iframes
- HTML - Blocks
- HTML - Backgrounds
- HTML - Colors
- HTML - Fonts
- HTML - Forms
- HTML - Embed Multimedia
- HTML - Marquees
- HTML - Header
- HTML - Style Sheet
- HTML - Javascript
- HTML - Layouts
- HTML References
- HTML - Tags Reference
- HTML - Attributes Reference
- HTML - Events Reference
- HTML - Fonts Reference
- HTML - ASCII Codes
- ASCII Table Lookup
- HTML - Color Names
- HTML - Entities
- HTML - Fonts Ref
- HTML - Events Ref
- MIME Media Types
- HTML - URL Encoding
- Language ISO Codes
- HTML - Character Encodings
- HTML - Deprecated Tags
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>
- Related Articles
- How to include an acronym in HTML?
- How to include another HTML file in an HTML file?
- How to include an input field in HTML?
- How to mark abbreviation or acronyms in HTML?
- How to include an external JavaScript inside an HTML page?
- How do we include an anchor in HTML?
- How to include inline JavaScript inside an HTML page?
- HTML DOM Abbreviation Object
- How do we include an emphasized text in HTML?
- How to include Modernizr in HTML document?
- How to include JavaScript in HTML Documents?
- How to include CSS in HTML Pages
- How to include an option in a drop-down list in HTML?
- Include meta data in an HTML document
- How do we include a section in an HTML document?

Advertisements