Open In App
Related Articles

HTML <address> Tag

Improve Article
Improve
Save Article
Save
Like Article
Like

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: 
 

address

Supported Browsers: 

  • Google Chrome
  • Edge 12 and above
  • Internet Explorer
  • Firefox 1 and above
  • Opera
  • Safari 1 and above
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 19 Jul, 2022
Like Article
Save Article
Previous
Next
Similar Reads
Complete Tutorials