<address>

Draft

Definition

The <address> element is used to mark up contact information for the author of a document or article. Contact information can include an email address, a website URL or a postal address.

<address>
  <p><a href="mailto:email@example.com">Email Dan</a></p>
  <p><a href="https://example.com">Visit Dan's Website</a></p>
  <p>
    123 Main Street<br />
    New York, NY 10001
  </p>
</address>