JSFiddle - React, Tailwind, and code Playground
HTML
<div id="container">
<img src="http://boxedinfinity.com/wp-content/uploads/2013/12/Halo3.jpg" alt="Game Image" id="gameImage">
<div id="second">
<h2>Genre:</h2>
<p>First Person Shooter</p>
</div>
</div>
CSS
#gameImage {
width: 100px;
float: left;
height: auto;
}
#second {
background-color: green;
}
#second p {
margin-left: 10px;
}