
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
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
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>
Advertisements