The full name of <abbr> tag is abbreviations.
Abbreviations means short form.Like HTML is a short form, which has full name Hypertext Markup Language. How abbreviations work, what we will see in this post today. We have a tag to use it,the html <abbr> element define an abbreviation or an acronym.
I have shown how to use <abbr> tag :
<p> My Name is <abbr title="Vishal Khasiya"> VK </abbr> </p>
Abbreviations is your starting tag. Your title tag is written inside the starting tag, As I've explained to you in the earlier post.
Abbreviations tag is how to write it, notepad, or whatever software you use, I have given this example below
Example Code :
<html>
<head>
<title> Abbreviations Tag Demo </title>
</head>
<body>
<p> The WHO was founded in 1948 </p>
<p> The <abbr title="World Health Organizations"> WHO </abbr> was founded in 1948 </p>
</body>
</html>
Output :
The WHO was founded in 1948
The WHO was founded in 1948
The WHO was founded in 1948
The first one in the example given above is a simple paragraph text. And in that title we have used <abbr> tag in the word "WHO". Now you will place the cursor of the mouse on the "WHO" word of the second title, then you will see the title of World Health Organizations in its title.
Simply put,In the <abbr> tag you type the word shots on any place, if you write the full name you do not want to show in the webpage. And when you hover the mouse over that text, then its full name will be displayed,Which did not show in the web page.
Browser Support :
Thank You for Watching My Blog Post......
0 Comments