<Address> Tag in HTML 5

In this article I am going to explain about &lt;Address&gt; tag in HTML 5
  • 2238

Definition

The <address> tag in HTML 5 is used to defines the contact information for the author/owner of a document posted in web page or web site. <address> tag is used inside the <body> tag then it means it represents contact information for document posted in web page or web site. <address> tag is used inside the <address> tag then it means it represents contact information for article posted in web page or web site.

Browser Support by <body> tag

The <body> tag is supported in internet explorer, mozilla firefox, Google chrome, opera and safari browsers.

Lets take an example of <address> tag

 <html>

<head>

<title>This is My First web page</title>

</head>

<body>

    <h1>

        <address>

            Written by <a href="http://www.c-sharpcorner.com/authors/898089/vipendra-verma.aspx">

                Vipendra Verma</a>.<br />

            www.c-sharpcorner.com:<br />

            dotnetheaven.com<br />

            MCN Solutions<br />

            India

        </address>

    </h1>

</body>

</html>

Output

Clipboard02.jpg

Further Readings

You may also want to read these related articles :

HTML 5 Articles

Article and Address Tags in HTML5

Working With Abbr And Address Tags in HTML5

Ask Your Question 

Got a programming related question? You may want to post your question here

Programming Answers here

 

© 2020 DotNetHeaven. All rights reserved.