HTML <address> Tag
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.
<address> Example
<!DOCTYPE html> <html> <body> <address> Written by <a href="mailto:support@javameant.com">Rahul Ahuja</a>.<br> Visit us at:<br> javameant.com<br> electronic city 564432, KARNATAKA<br> INDIA </address> </body> </html>