You can use the HTML address tag to include your contact information on a web page easily. All you have to do is use the <address> tag inside the <body> wherever you want to provide the contact information. The address tag helps search engines find the contact information of the document.
The content inside the HTML address tag highlights its significance by using italic styling by default. Here, we will learn more about the HTML address tag and its significance.
The HTML address Tag
The <address> tag in HTML is a block level element that holds the author’s or organisation’s contact information on the webpage. It defines the contact information for its nearest ancestor i,e. an <article> or <body> tag.
An <address> tag contains information, such as name, phone number, email, or other related information for the element. They add semantic meaning, making the webpage search engine-friendly. The HTML address tag supports both global as well as event attributes.
- The HTML address tag is used to define the contact information of the author of the webpage.
- The <address> tag is supported by all major browsers, including Chrome, Bing, Safari, Firefox, Opera, and more.
- By default, the address elements inside are displayed in italics.
- Most often, the address tag is used in the footer to display the contact information of the author of the webpage.
- Some browsers add a line break before and after the <address> tag.
Read More: HTML a tag: The Complete Explanation For Anchor Element [Latest 2025]
The HTML address Tag Syntax
The syntax for the address tag in HTML is very simple and can be embedded in an HTML document easily.
| <address> ……………..</address> |
Anything enclosed within these <address> tags is considered contact information and is highlighted by using italic styling. Remember the address tag is not self closing, hence you will have to use an opening tag i.,e. <address> and a closing </address> tag.
When to Use the HTML address Tag?
The HTML address tag is used when you have to provide information about a person, author, company, or owner.
- You can use the <address> tag to enclose the author or owner contact information.
- With the <address> tag, you can provide your users with a chance to connect with the concerned or responsible person for any issue they are facing.
- The <address> tag is most frequently used in website footers to display the business contact details.
- You can use the <address> tag to present the contact information specific to an article or section and not the whole website.
Read More: Top 30 HTML Interview Questions and Answers 2025
Components of the HTML <address> Tag
The HTML <address> tag is not only used to include the physical address, rather it can also include contact information like social links, emails, phone numbers, website links, person name, company name, and more.
Check a few examples for the <address> tag components below.
1. Physical Address
This is the most frequently used element inside an <address> tag in HTML. See how easily you can include the address inside the tag.
| <address>
A1, 34, Block A1, Janakpuri, New Delhi- 110058 </address> |
2. Email Information
This option will help you open an email where users can connect with you via email.
| <address>
<a href=”mailto:itsankitt231@gmail.com”>itsankitt231@gmail.com</a> </address> |
3. Phone Number
This contact information element can be used to provide the phone information within the < address> tag.
| <address>
<a href=”tel: +918382025751 >itsankitt231@gmail.com</a> </address> |
4. Personal Name
You can provide the name of the website or social links frequently used for author information.
| <address>
<address> <strong>Ankit Kumar</strong><br>
SEO Content Writer </address> |
Attributes Used With the HTML address Tag
The HTML address tag only supports the global attributes, and no other special attributes or event attributes are used.
1. class attribute
This attribute is used with the <address> tag to assign one or more class names for CSS styling.
| <address class= “footer-address”>………..</address> |
2. id attribute
The id attribute is used with the <address> tag in HTML to assign a unique ID for the element.
| <address id=”contact-info”>…</address> |
3. CSS styling
The style attribute is used to apply inline CSS directly to the <address> elements.
| <address style=”font-style: normal; color: gray;”>…</address> |
4. title attribute
This attribute is used with the HTML address tag to add a tooltip text that can be visible when hovering over the address elements.
| <address title=”Company Address”>…</address> |
5. lang attribute
The lang attribute is used with the <address> tag to specify the language of the content inside the tag. You can specify the language of your choice to be displayed on the live browser.
| <address lang=”en”>…</address> |
How to Use the HTML address Tag?
The HTML address tag is defined with an opening as well as a closing tag. You can use the address tag in the following cases.
- You can use the <address> tag inside the <body> tag when you want to display the contact information of the owner of the whole document.
- The address tag is also used with the <article> tag to represent the contact information of the owner of the particular article.
- Most often, the <address> tag is used in the <footer> tag of a website to represent the contact information of the webpage.
Make sure the <address> tag is context specific and not used for styling purposes only. It must contain the contact information inside i,e. Physical address, phone number, e-mail, and more relevant information to the author’s or owner’s contact information.
Read More: What Is HTML Basics? Hypertext Markup Language Basics Explained
Example for HTML address Tag
Let us take an example to understand how the <address> tag works in an HTML web page.
Here, we are taking an example of the Art studio located in New Delhi, along with their phone number, mail address, and official website links in the <address> tag.
| <!DOCTYPE html>
<html lang=”en”> <head> <meta charset=”UTF-8″> <meta name=”viewport” content=”width=device-width, initial-scale=1.0″> <title>Address Tag Example</title> </head> <body> <h2>Contact Us</h2> <address> <strong>Artify Studio</strong><br> 22 Market Street, New Delhi, India<br> Phone: <a href=”tel:+911234567890″>+91 12345 67890</a><br> Email: <a href=”mailto:info@artify.com”>info@artify.com</a><br> Website: <a href=”https://www.artify.com”>www.artify.com</a> </address> </body> </html> |
Output
![]() |
Best Practices for Using the HTML address Tag
Let us check some of the best ways to use the HTML address tags below.
- The address tag in HTML must not contain information other than contacts i,e. Author name, physical address, emails, phone numbers, and more.
- Do not use the address tag for general location details, such as “The office is located in New Delhi, India. Provide proper physical address details.
- The best place to put the <address> tag is inside a <footer> for the contact information of the complete website.
- Try to use only inline elements inside the <address> tag, such as <br>, <em>, <a>, <strong>, and more.
- Do not overflood the <address> tag with information; keep only relevant contact details like name, email, phone, and physical address, and social links.
Master Complete HTML With PW Skills
Learn and master the complete HTML fundamentals, tags, and build your portfolio with real world projects, assessments, and more in PW Skills Full Stack Web Development Course. Master HTML, CSS, JavaScript, React, SQL, and more.
Get doubt support sessions, industry led professional sessions, project portfolio, career assistance, and industry skills. After completion, you will get an industry recognised certification by PW Skills to level up your game in web development and gain exposure.
HTML address Tag FAQs
Q1. What is the HTML address tag?
Ans: The <addres tag in HTML is a block-level element that holds the author’s or organisation’s contact information on the webpage. It defines the contact information for its nearest ancestor.
Q2. Are there attributes for the address tag?
Ans: No, there are no specific attributes for the address tag. It only uses the global attributes inside.
Q3. Why is the address tag used in HTML?
Ans: The HTML address tag defines the contact information of the author or organisation of a webpage, or article. It also helps browsers locate the contact information of the webpage easily.
Q4. How to write an address in an HTML document?
Ans: You can include an address in an HTML document using the address> tag, which includes the contact information of a person or an organisation.

![HTML address tag: Syntax, Components, Attributes, And Examples [2025] 3 HTML address tag](https://blog.pwskills.com/wp-content/uploads/2025/10/screenshot-2025-10-31-at-15827-pm-6904738692fd6.webp)