Please note, this is a STATIC archive of website www.w3schools.com from 05 May 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.
THE WORLD'S LARGEST WEB DEVELOPER SITE

HTML <address> Tag


Example

Contact information for Example.com:

<address>
Written by <a href="mailto:[email protected]">Jon Doe</a>.<br>
Visit us at:<br>
Example.com<br>
Box 564, Disneyland<br>
USA
</address>
Try it Yourself »

Definition and Usage

The <address> tag defines the contact information for the author/owner of a document or an article.

The contact information can be an email address, URL, physical address, phone number, social media handle, etc.

The text in the <address> element usually renders in italic. Most browsers will add a line break before and after the address element.


Browser Support

Element
<address> Yes Yes Yes Yes Yes

Global Attributes

The <address> tag also supports the Global Attributes in HTML.


Event Attributes

The <address> tag also supports the Event Attributes in HTML.


Related Pages

HTML DOM reference: Address Object


Default CSS Settings

Most browsers will display the <address> element with the following default values:

Example

address {
  display: block;
  font-style: italic;
}
Try it Yourself »