

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
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 Questions & Answers
- How to include an acronym in HTML?
- How to include an embedded object in HTML?
- How to include an input field in HTML?
- HTML DOM Abbreviation Object
- 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?
- Include meta data in an HTML document
- 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 do we include an inline sub window in HTML?
- How do we include a section in an HTML document?
Advertisements