
- Javascript Basics Tutorial
- Javascript - Home
- Javascript - Overview
- Javascript - Syntax
- Javascript - Enabling
- Javascript - Placement
- Javascript - Variables
- Javascript - Operators
- Javascript - If...Else
- Javascript - Switch Case
- Javascript - While Loop
- Javascript - For Loop
- Javascript - For...in
- Javascript - Loop Control
- Javascript - Functions
- Javascript - Events
- Javascript - Cookies
- Javascript - Page Redirect
- Javascript - Dialog Boxes
- Javascript - Void Keyword
- Javascript - Page Printing
- JavaScript Objects
- Javascript - Objects
- Javascript - Number
- Javascript - Boolean
- Javascript - Strings
- Javascript - Arrays
- Javascript - Date
- Javascript - Math
- Javascript - RegExp
- Javascript - HTML DOM
- JavaScript Advanced
- Javascript - Error Handling
- Javascript - Validations
- Javascript - Animation
- Javascript - Multimedia
- Javascript - Debugging
- Javascript - Image Map
- Javascript - Browsers
- JavaScript Useful Resources
- Javascript - Questions And Answers
- Javascript - Quick Guide
- Javascript - Functions
- Javascript - Resources
What is the difference between an acronym and abbr tags?
In layman language, an acronym is a word formed by taking letters of each word in a phrase to form an abbreviation. Acronyms are a subset of abbreviations i.e. abbreviation is a shortened form of a word.
The <acronym> tag isn’t supported in HTML5 and is deprecated now. Do not use. To add abbreviation in HTML, use the <abbr> tag. Both abbreviation and acronym are the shortened versions and are represented as a series of letters. Some of the examples include, "Mr.", "IST", "MRI", “NASA”, “ISRO” etc.
Example
You can try to run the following code to add abbreviation in HTML.
<!DOCTYPE html> <html> <head> <title>HTML abbreviation</title> </head> <body> <h1>Space Exploration</h1> <p>US Space Explorations are governed by <abbr title="National Aeronautics and Space Administration">NASA</abbr>. </p> </body> </html>
- Related Articles
- What is the difference between HTML tags and ?
- What is the difference between an island and the continent?
- What is the difference between a simulator and an emulator?
- What is the difference between a conductor and an insulator?
- What is the difference between an offer and an invitation to offer?
- What is the difference between a kernel and an operating system?
- What is the difference between a python list and an array?
- What is the difference between an IP Camera and CCTV Camera?
- What is the difference between an interface and an abstract class in C#?
- How to include an acronym in HTML?
- What is the difference between an int and a long in C++?
- What is the difference between a list and an array in C#?
- What is the difference between an interface and a class in C#?
- What is the difference between a class and an object in C#?
- What is the difference between a shadow and image of an object?

Advertisements