=> 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>
π 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>
=> 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)