From http://www.w3schools.com (Copyright Refsnes Data)

HTML <address> tag


Example

Contact information for W3Schools.com:

<address>
Written by W3Schools.com<br />
<a href="mailto:[email protected]">Email us</a><br />
Address: Box 564, Disneyland<br />
Phone: +12 34 56 78
</address>

Try it yourself!


Definition and Usage

The <address> tag is used to mark up contact information for the author or owner of the document. This way, the reader is able to contact the document's owner.

The address element is usually added to the header or footer of a webpage.


Browser Support

Internet Explorer Firefox Opera Google Chrome Safari

The <address> tag is supported in all major browsers.


Differences Between HTML and XHTML

NONE


Tips and Notes

In all browsers the address renders in italic. Most browsers will also add a line break before and after the address element.


Standard Attributes

id, class, title, style, dir, lang, xml:lang

For a full description, go to Standard Attributes.

Event Attributes

onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup

For a full description, go to Event Attributes.


From http://www.w3schools.com (Copyright Refsnes Data)