HudaTutorials.com

HTML5 address Tag - Contact Address Element

Last updated on

HTML5 <address> Tag

HTML5 address Element

The <address> tag defines the contact information for the author or owner of a document or an article. The contact information can be an email address, URL, physical address, phone number, social media handle, etc.

In other words, the HTML5 <address> element indicates that the enclosed HTML provides contact information for a person or people, or for an organization.

<address> can be used in a variety of contexts, such as providing a business's contact information in the page header, or indicating the author of an article by including an <address> element within the <article>.

The contact information provided by an <address> element's contents can take whatever form is appropriate for the context, and may include any type of contact information that is needed, such as a physical address, URL, email address, phone number, social media handle, geographic coordinates, and so forth. The <address> element should include the name of the person, people, or organization to which the contact information refers.

What does address stand for ?

address stand for the contact address.

What is address Tag in HTML5 ?

The address tag defines the contact information for the author or owner of a document or an article. The contact information can be an email address, URL, physical address, phone number, social media handle, etc.

How to use address Tag in HTML5 ?

Following example shows how to use address tag in HTML5.

HTML5 address Tag Example

<!doctype html>
<html>
  <head>
    <title>HTML5 address Tag Example</title>
  </head>
  <body>
    <p>Contact the author of this page : </p>
    <address>
      Written by : Huda Tutorials<br>
      Visit us at: https://www.hudatutorials.com<br>
      India
    </address>
  </body>
</html>

HTML5 address Tag Example Output

Contact the author of this page :

Written by : Huda Tutorials
Visit us at: https://www.hudatutorials.com
India