Abbr Tag in HTML5

In this article I am going to describe about the implementation and use of abbr tag in HTML5.
  • 1274

In this article I am going to describe about the implementation and use of abbr tag in HTML5.

Introduction of Abbr Tag

<abbr> tag is used to represent an abbreviation.The expression which is to be abbreviated is written between the <abbr></abbr>tags. The <abbr> tag of HTML5 is very much similar to the <abbr> tag of HTML4.01.

Browser supporting the <abbr> tag

<abbr>tag is supported in all major browsers.

Example of <abbr> tag in HTML5

<!DOCTYPE html>

 

<html lang="en" xmlns="http://www.w3.org/1999/xhtml">

<head>

    <title>Example of <abbr>tag in html5</title>

</head>

<body>

    <h2>Implementation of abbr tag in HTML5</h2>

    <abbr title="Internet Explorer">IE</abbr>

    is one of the Browser.

</body>

</html>

Output

abbr.jpg

© 2020 DotNetHeaven. All rights reserved.