JSFiddle - React, Tailwind, and code Playground

by Vladimir

HTML

<div class="contact-block" itemscope itemtype="http://schema.org/LocalBusiness">
   <div itemprop="name">One Stop Lawyers</div>
   <div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
     <div itemprop="streetAddress">160 Ann Street<br /> Level 21, Suite 10</div>
     <span itemprop="addressLocality">Brisbane</span>
     <span itemprop="addressRegion">Qld</span>
     <span itemprop="postalCode">4000</span>
       <div itemprop="addressCountry">Australia</div>
   </div>
   <div>Phone: <span itemprop="telephone">(07) 3106 8627</span></div>
</div>

CSS

/* don't copy this block */
body {
    background: #0054a6;
}

/* copy this block */
.contact-block {
    line-height: 16px;
    color: #FFF;
}