<div itemscope itemtype="http://schema.org/Store"> <!--or http://schema.org/localBusiness-->
<span itemprop="name">Company Name</span>
<div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
<span itemprop="streetAddress">123 Main Street</span>
<span itemprop="addressLocality">Manheim</span>,
<span itemprop="addressRegion">PA</span>
<span itemprop="postalCode">12345</span>
</div>
Phone: <a href="tel:5554443333" itemprop="telephone">555-444-3333</a>
Email: <a href="mailto:info@company_website.com" itemprop="email">info@company_website.com</a>
Web: <a itemprop="url" href="http://www.company_website.com">company_website.com</a>
Map: <a href="http://maps.google.com/?q=123 Main Street Manheim, PA 12345" itemprop="maps">Get Directions</a>
Hours Example 1:
<meta itemprop="openingHours" content="Mo-Fr 6:00-16:30">Mon-Fri 6am-4:30pm
Sat-Sun Closed <!--included for users' sake-->
Hours Example 2:
<meta itemprop="openingHours" content="Mo-Tu 8:00-17:00">Mon-Tue 8-5
<meta itemprop="openingHours" content="We 9:00-17:00">Wed 9-5
<meta itemprop="openingHours" content="Th-Sa 9:00-14:00">Thu-Sat 9-2
Closed Sunday
Hours Example 3:
<div itemprop="openingHoursSpecification" itemtype="http://schema.org/OpeningHoursSpecification">
<span itemprop="description" class="metaName">Breakfast: </span>
<span itemprop="openingHours">Monday to Friday 11:00 AM - 2:00 PM</span>
</div>
Hours Example 4: <!--to show holiday hours, see https://schema.org/OpeningHoursSpecification-->
<div itemprop="openingHoursSpecification" itemtype="http://schema.org/OpeningHoursSpecification">
<link property="itemprop" href="http://purl.org/goodrelations/v1#Monday" />Monday:
<time itemprop="opens" content="09:00:00"> 9:00 AM</time> - <time itemprop="closes" content="17:00:00"> 5:00 PM</time>
</div>
</div>