Abbreviation or Acronym in Html









ð  The<abbr> tag defines an abbreviation or an acronym, like"HTML", "CSS", "Mr.","Dr.",
"ASAP", "ATM".
ð Use the Title attribute to show the description for the abbreviation/acronym when you mouse over the element.

Example  
<p> welcome to <abbr title=”coding Wala”> CW </abbr> channel </p>





Code  :

<!DOCTYPE html>
<html>
<head>
<title>Coding wala</title>
</head>
<body>
<h1><abbr  title="coding wala">CW</abbr> is my channel</h1>
</body>
</html>

Comments

Popular posts from this blog

Search Record From Table Using jQuery in Asp.net core MVC

Calendar in Asp.net

CheckBox in Asp.Net MVC (Insert Data of CheckBox in Database and GetData Of checkBox From DataBase)