Abbreviation or Acronym in Html
ð The<abbr> tag defines an abbreviation or an acronym, like"HTML", "CSS", "Mr.","Dr.",
"ASAP", "ATM".
"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
Post a Comment