JSFiddle - React, Tailwind, and code Playground

HTML

<div class="left-div">
<H2> Telephone:</H2>
<strong>Mobile: </strong>     123456789<br />
<strong>Office: </strong>     123456789(answer service)<br />
<strong> Email: </strong><a href="mailto:[email protected]" style="text-decoration:none;">[email protected]</a>
</div>

<div class="right-div">
<H2>Address:</H2>
house<br />
town<br />
county<br />
</div>

CSS

.left-div {
    float: left;
    width: 400px;
    height: 250px;
    padding-top: 1px;
        }
.right-div {
    margin-left: 400px;
    padding-top: 1px;
  }