HTML address tag in HTML used to defines the contact information for the author/owner of a document/company or an article.
In address tag you can show email address link, Others URL, office address, phone number, social media handle in HTML web page.
Note: The text inside the <address> tag will display in italic format.
Syntax
1 |
<address> Address... </address> |
Use of address tag in HTML Example
Example code of address tag- Contact information for abc.com:
1 2 3 4 5 6 7 8 9 10 11 12 13 |
<!DOCTYPE html> <html> <body> <address> Visit us at:<br> ABC.com<br> Box 777, Bangalore<br> INDIA </address> </body> </html> |
Output:

HTML address attributes
This element only includes the global attributes.
Must Read: we have also set the email-is using the mailto − How to Create Mailto HTML Links
Do comment if you know other use of it or have any doubts in this topic.
Note: The All HTML Examples codes are tested on the Firefox browser and the Chrome browser.
OS: Windows 10
Code: HTML 5 Version