Let 's say you have a local business address and you add your address somewhere on your website then you should use this kind of snippets code from google:
HTML Code:
<div itemscope itemtype="http://schema.org/localBusiness">
<div itemprop="name">Rudolph Enterprises</div>
<div itemprop="contactPoint">Santa Claus</div>
<div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
<span itemprop="streetAddress">343 High Point</span>
<span itemprop="addressLocality">Arctic Circle</span>
<span itemprop="addressRegion">NU</span>
<span itemprop="postalCode">H0H 0H0</span>
<span itemprop="telephone">777-777-7777</span>
</div>
<div itemprop="geo" itemscope itemtype="http://schema.org/GeoCoordinates">
<meta itemprop="latitude" content="77.777777" />
<meta itemprop="longitude" content="-77.777777" />
</div>
</div>
Bookmarks