DEV Community

Cover image for Using address tags for Local SEO
Pawar Shivam
Pawar Shivam

Posted on

Using address tags for Local SEO

=> What Most Developers Do

They write contact info like this:

<div class="contact">
  <p>ABC Company</p>
  <p>Ahmedabad, India</p>
  <p>+91 99999 99999</p>
</div>
Enter fullscreen mode Exit fullscreen mode

πŸ‘‰ Looks fine visually
πŸ‘‰ But search engines don’t fully understand it


=> The Semantic Way

HTML already provides a tag for this:

<address>
  ABC Company<br>
  Ahmedabad, India<br>
  <a href="tel:+919999999999">+91 99999 99999</a>
</address>
Enter fullscreen mode Exit fullscreen mode

=> Why <address> Matters

It tells browsers and search engines:

πŸ‘‰ this is contact information
πŸ‘‰ this is business/location data


=> SEO Advantage

Search engines can better:

  • identify business details
  • connect location data
  • improve local search visibility

=> Accessibility Benefit

Screen readers understand:

πŸ‘‰ this section contains contact info

Better experience for users.


=> What Developers Often Miss

They focus on design:

πŸ‘‰ but ignore meaning


=> Important Rule

<address> is NOT for:

  • random text
  • blog author bio

It should be used for:

πŸ‘‰ contact info of person or organization


=> Combine With Other SEO Techniques

For best results, use with:

  • proper headings
  • structured data (JSON-LD)
  • Google Business Profile

=> Real UI Tip

Place <address> in:

  • footer
  • contact page
  • business info section

=> What Do You Think?

Have you ever used <address> for SEO in your projects?

Top comments (0)