<address>

CBID2's avatar
Published Jul 8, 2023
Contribute to Docs

The <address> tag is a semantic HTML element that is used to indicate that an organization or person’s contact information is being provided. This tag can include information such as a mailing address, links to social media, email, phone number, URLs, etc. This element can also be used in various areas such as the top of the webpage or its bottom.

Note: Only contact information should be presented within the <address> tag. Content such as a blog post’s publication date should be added within the applicable elements, for example, the <time> tag.

Syntax

<address>
<!-- contact information goes here -->
</address>

Example 1

The code snippet below shows the <address> tag being used to convey a person’s email address and phone number:

<p>Want to work together? Contact me via the information below:</p>
<address>
<a href="mailto:[email protected]">[email protected]</a><br />
<a href="tel:+13165552398">(316).555.2398 </a>
</address>

Example 2

The snippet below shows the tag being used to share a company’s contact information:

<address>
Written by <a href="mailto:[email protected]">Stoop Branch </a>.<br />
Visit us at:<br />
Tree Opius<br />
Box 354, Palm Tree<br />
USA
</address>

All contributors

Contribute to Docs

Learn HTML on Codecademy