The <abbr> tag in HTML is used to define the abbreviation or short form of an element. The <abbr> and <acronym> tags are used as shortened versions and used to represented as a series of letters. It is used to provide useful information to the browsers, translation systems, and search-engines.
Example:
<!DOCTYPE html> <html> <head> <title>abbr tag</title> <style> body { text-align:center; } h1 { color:green; } </style> </head> <body> <h1> Launch Pad Blog
</h1> <h2><abbr> Tag</h2> <abbr title="
Launch Pad Blog ">LPB</abbr> </body> </html> |
0 Comments
Please do not enter any spam links in the comment box