Table of contents

HTML <address> Tag: Definition, Syntax, and Examples

What is HTML <address> Tag?

The HTML address tag is used to define contact information for the author or owner of a webpage or article. This information may include a name, email address, physical address, or phone number. The content inside the address tag is usually displayed in italics by default and often appears at the bottom of a webpage.

This tag is important because it helps both users and search engines identify the source or contact details of the content. It adds credibility, improves accessibility, and enhances SEO by providing structured author or organization information. The address tag is placed inside the body of an HTML document, typically within the footer section.

Syntax of the HTML <address> Tag

plaintext
<address>
Contact details go here
</address>

The syntax starts with the address tag and ends with the address tag. The content between these tags includes contact details such as email, physical address, or links to contact pages.

Examples of HTML <address> Tag

Example 1: Basic HTML Address Tag

plaintext
<!DOCTYPE html>
<html lang="en">
<body>

  <footer>
    <address>
      Written by John Doe<br>
      Visit us at Scholar247.com<br>
      123 Web Avenue, New York, USA
    </address>
  </footer>

</body>
</html>

In this example, the address tag provides contact information for the author. The browser will display this text in an italicized format, separating it visually from other content.

Example 2: SEO Optimized HTML Address Tag

plaintext
<!DOCTYPE html>
<html lang="en">
<body>

  <footer>
    <address>
      Contact Scholar247 Web Team<br>
      Visit us at <a href="https://www.scholar247.com">www.scholar247.com</a><br>
      Email: contact@scholar247.com<br>
      501 Tech Tower, Silicon Valley, USA
    </address>
  </footer>

</body>
</html>

This example uses an SEO-friendly format that includes a clickable link and relevant keywords like “Scholar247 Web Team.” Adding links and proper formatting improves visibility, accessibility, and user engagement.

Attributes of the HTML <address> Tag

The address tag does not support any specific attributes.
It only contains text or inline elements such as links, line breaks, or contact details.

Best Practices for HTML <address> Tag

• Place the address tag inside the footer section for best readability.
• Include relevant and up-to-date contact details.
• Use line breaks (br) for clear formatting of each contact line.
• Use hyperlinks for website URLs or emails to improve usability.
• Avoid using it for non-contact information as it may confuse search engines.
• Combine it with semantic HTML structure to improve SEO and accessibility.

FAQs About HTML <address> Tag

What is the purpose of the HTML address tag?

The address tag defines contact details for the webpage’s author or organization, usually displayed in the footer section.

Yes, you can include hyperlinks such as website URLs or email addresses within the address tag for better interactivity.

Does the address tag improve SEO?

Yes. Providing accurate contact information with relevant keywords can help improve your site’s credibility and local SEO.

Where should I place the address tag in my HTML document?

It is best placed inside the footer element, although it can be used elsewhere if needed to identify the author or content owner.

Can I use multiple address tags on one page?

Yes, you can use multiple address tags if you have different authors or sections with unique contact information.

HTML

Related Articles