View video tutorial

HTML <address> Tag

HTML

The <address> tag is used to specify contact information of the author or similar entity.

HTML <address> Tag


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

Contact information can be for an individual or people, or for an organization.

Usually a <address> element can be placed inside the <footer> element.

Global attributes

Global attributes may be applied on all elements, although some elements may have no effect on them.

<accesskey>, <class>, <contenteditable>, <contextmenu>, <data-*>, <dir>, <draggable>, <dropzone>, <hidden>, <id>, <lang>, <spellcheck>, <style>, <tabindex>, <title>, <translate>.

Learning with HTML Editor "Try it Now"

You can edit the HTML code and view the result using online editor.

Example

<address>
    <a href="mailto:info@example.com">JOHN SMITH</a>.<br>
    Contact us at:<br>
    101 MAIN ST<br>
    PO BOX 1234<br>
    SEATTLE WA 98765<br>
    USA
</address>
Try it Now »

Click on the "Try it Now" button to see how it works.