Back to articles
Using address tags for Local SEO

Using address tags for Local SEO

via Dev.to WebdevPawar Shivam

=> 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 S

Continue reading on Dev.to Webdev

Opens in a new tab

Read Full Article
2 views

Related Articles