acronym tag in html


  1. The <acronym> tag is used for indicating an acronym. 
  2. The title attribute is generally used to specify the whole word or phrase that the abbreviation is referring to. An acronym is also an abbreviation, but an abbreviation is not necessarily an acronym. 
  3. By marking up acronyms you can give useful information to browsers, spell checkers, translation systems and search-engine indexers.The <acronym> is supported in all major browsers, except IE5.5 or earlier versions.



Example 1 :



     <html>
     <head>
     <title>Acronym</title>
     </head>
     <body>
     <p>The <acronym title="Cascading Style Sheets">CSS</acronym> works along with HTML.</p>
     </body>
     </html>
     

Demo :





Example 2 : Acronym and Style


<html>
<head>
<title>AcronymStyle</title>
<style type="text/css">
#kk
{
color:green;
font-family:comic sans ms;
font-size:30px;
}
</style>
</head>
<body>
<p>The <acronym id="kk" title="Cascading Style Sheets">CSS</acronym>works with HTML.</p>
</body>
</html>


Demo :




Style tag is used between head section. Above example shows how you can change <acronym> text color, font, and other font attributes.


0 comments:

Post a Comment