html
  1. html-address-tag

HTML <address> Tag

  • The <address> tag wraps the contact information.
  • There are paragraphs inside the <address> tag providing details about the author, address, and an email link.

<address>
  <p>Written by John Doe.</p>
  <p>Visit us at: 123 Main Street, Cityville</p>
  <p>Contact us at: <a href="mailto:john.doe@example.com">john.doe@example.com</a></p>
</address>
Try Playground

The <address> tag doesn't add any specific styling or formatting by default; its purpose is to semantically indicate that the enclosed content is contact information.

Published on: