JSFiddle - React, Tailwind, and code Playground
by Afzaal Ahmad Zeeshan
HTML
<div class="container">
<p>Where some see a Wastewater Treatment Plant, Huber Technology envisions a Resource Recovery Center.</p>
<div class="col-xs-6">
<img src="https://www.google.com.pk/images/srpr/logo11w.png" />
</div>
</div>
CSS
.container {
width: 100%;
}
.container p, .container div img {
display: inline-block;
}
.container p {
width: 60%;
float: left;
}
.container div img {
width: 38%;
float: right;
}