HTML <address> tag
Definition and Usage
The <address> tag defines contact information for a document or a
section.
Differences Between HTML and XHTML
NONE
Tips and Notes
Note: The <address> tag should NOT be used as describing a postal address,
unless it is a part of the contact information.
Note: The address usually renders in italic. Most browsers will
add a line break before and after the address element, but line breaks inside
the text you have to insert yourself.
Example
| Source |
Output |
<address>
Author: of this document:<br />
<a href="mailto:donald@disneyland.com">Donald Duck</a>
</address>
|
Author of this document:
Donald Duck
|
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.
Try-It-Yourself Demos
Address
How to write an address.
|