
- 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 mark abbreviation or acronyms in HTML?
We use shortened versions to represent a series of letters.
The HTML <abbr> tag, used to define an abbreviation or an acronym, like "HTML", "CSS", "Mr.", etc.
Syntax
Following is the syntax for the <abbr> tag.
<abbr title="Delhi Land and Finance">DLF</abbr>
Example
Following is the example program for the <abbr> tag.
<!DOCTYPE html> <html> <head> <title>HTML abbr tag</title> </head> <body> <h1>Timings</h1> <p> We follow <abbr title="Artificial intelligence">AI</abbr> for our webinars. </p> </body> </html>
Example
Following is one more example program for the <abbr> tag.
<!DOCTYPE html> <html> <head> </head> <body> <p>DLF stands for <abbr title="Delhi Land and Finance">DLF</abbr></p> <p>Delhi Land and Finance is one of the largest commercial real estate developer in India.</p> </body> </html>
Example
Following is one more example program for the <abbr> tag.
<!DOCTYPE html> <html> <head> <title>HTML abbr tag</title> </head> <body> <abbr title = "Ante Meridiem">AM</abbr> <br> <abbr title = "Post Meridiem">PM</abbr> <br> <abbr title = "Indian Standarad Time">IST</abbr> </body> </html>
When we place the mouse cursor on the specified text and hold, it will show the abbreviation of the text.
- Related Articles
- How to include an abbreviation in HTML?
- HTML DOM Abbreviation Object
- How to mark deleted text in HTML?
- How to mark strikethrough text in HTML?
- How to mark inserted text in HTML?
- How to mark text superscript in HTML?
- How to mark work title using cite tag in HTML?
- HTML DOM Mark Object
- How to get the US states name abbreviation in R?
- Generalized Abbreviation in C++
- Word Abbreviation in C++
- Mark file or directory Read Only in Java
- How to return HTML or build HTML using JavaScript?
- Minimum Unique Word Abbreviation in C++
- How to remove question mark from corrplot in R?

Advertisements