UK[əˈdres] US[ˈædres]
n.Address; salutation; speech; correspondence office
v. Salutation; speech; write name and address; speak to...
Third person singular: addresses Plural: addresses Present participle: addressing Past tense: addressed Past participle: addressed
html address tag syntax
Function:Define the contact information of the document author/owner.
Description: If the <address> element is inside a <body> element, it represents the contact information of the author/owner of the document. If the <address> element is inside an <article> element, it represents the contact information for the author/owner of the article. The text of the <address> element is usually rendered in italics. Most browsers will add line breaks before and after this element.
Note: The <address> tag should not be used to describe postal addresses unless this information is part of the contact information. The <address> element is usually included with other information within the <footer> element.
html address tag example
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <address> Written by <a href="mailto:webmaster@example.com">Jon Doe</a>.<br> Visit us at:<br> Example.com<br> Box 564, Disneyland<br> USA </address> </body> </html>
Run instance »
Click the "Run instance" button to view the online instance