1<!-- In Your Css Code -->
2<style>
3  img {
4    width: 50%; /*image width*/
5    float: left; /*image position*/
6  }
7  p {
8    width: 50%;
9    float: right;
10  }
11  /*If you face any problem make sure the <body> element has no padding.
12  If you want some white space between the image and text, reduce the width
13  percentages and make use of "margin" and "padding"*/
14</style>
15
16<!-- In Your Html Code -->
17<img src="image.jpg" alt="Your Image">
18<p> Your Text Goes Here </p>