HTML <address> Tag
The <address> tag in HTML indicates the contact information of a person or an organization. If <address> tag is used inside the <body> tag then it represents the contact information of the document and if the <address> tag is used inside the <article> tag, then it represents the contact information of the article. The text inside the <address> tag will display in italic format. Some browsers add a line break before and after the address element.
Syntax:
<address> Address... </address>
Example:
html
<!DOCTYPE html> < html > < body > <!-- address tag starts from here --> < address > Organization Name: GeeksforGeeks < br > Web Site: < a href = GeeksforGeeks</ a >< br > visit us:< br > GeeksforGeeks< br > 710-B, Advant Navis Business Park, < br > Sector-142, Noida Uttar Pradesh – 201305 </ address > <!-- address tag ends here --> </ body > </ html > |
Output:
Supported Browsers:
- Google Chrome
- Edge 12 and above
- Internet Explorer
- Firefox 1 and above
- Opera
- Safari 1 and above
Please Login to comment...