JSFiddle - React, Tailwind, and code Playground

HTML

<div class="section">
    <div class="leftinfo">
        <img src='https://www.google.co.in/images/srpr/logo4w.png' />
    </div>
    <div class="rightinfo"> <strong>Title 1</strong>
        <br />Dscription 1</div>
</div>
<br />
<div class="section">
    <div class="rightinfo" >
        <img src='https://www.google.co.in/images/srpr/logo4w.png' />
    </div>
    <div class="leftinfo"> <strong>Title 2</strong>
        <br />Dscription 2</div>
</div>

CSS

.section{width:500px; height:200px;}
.rightinfo{ float : right; }
.leftinfo{ float : left; }
.section img{width:402px; height:178px;}