How to Create Abbreviation of an Element using HTML5 ?
In this article, the abbreviation of an element can be created by using the <abbr> tag. This tag 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 a series of letters. The abbreviation is used to provide useful information to the browsers, translation systems, and search-engines.
Syntax:
<abbr title> Short form </abbr>
Example:
<!DOCTYPE html> < html > < head > < title > How to Create Abbreviation of an Element using HTML5 ? </ title > < style > body { text-align: center; } h1 { color: green; } </ style > </ head > < body > < h1 >GeeksforGeeks</ h1 > < h2 > How to Create Abbreviation of an Element using HTML5 ? </ h2 > < abbr title = "GeeksforGeeks" >GFG</ abbr > </ body > </ html > |
Output:
Supported Browsers:
- Google Chrome
- Internet Explorer
- Firefox
- Opera
- Safari
Please Login to comment...