Having some trouble positioning an Image and Text next to another Image. Check out an example here:
I attempted using floats, but it doesn't seem to be working. Here is the code I have:
.left {float: left;}
.right{float: right;}
<div class="left">
<img src="img/image1.png" />
<p>Text</p>
</div>
<div class="right">
<img src="img/image2.png" />
</div>