address
Definition and Usage
The <address> tag defines the contact information for the author/owner of a document or an article. If the <address> element is inside the <body> element, it represents contact information for the document. If the <address> element is inside an <article> element, it represents contact information for that article. The text in the <address> element usually renders in italic. Most browsers will add a line break before and after the address element. The address element provides contact information for a document or part of a document. Information provided by address may include the names of the document’s maintainers, links to the maintainers’ Web pages, e-mail addresses for feedback, postal addresses, phone numbers, and so on. The address element is not appropriate for all postal and e-mail addresses; it should be reserved for providing such information about the contact people for the document.
The HTML <address> tag defines contact information for the nearest <article> or <body> ancestor in the HTML document. This tag is also commonly referred to as the <address> element.
Syntax
In HTML, the syntax for the <address> tag is:<body> <address>Contact information goes here</address> </body>