I'm trying to wrap the text round the image used from both side like this:
here is the html.
<div class="container">
<div class="row">
<div class="col-lg-4">
<p>
There’s nothing like the feeling of driving a brand new luxury car or fully equipped SUV – especially if it’s free! That’s right! As part of B-Epic’s Compensation Plan, one of the awesome ways we reward our Brand Partners is with a car payment bonus of $500 per month.
</p>
<p>
With our one-of-a-kind Car Bonus program, you only need to focus on one simple thing: Get 4 Brand Partners on the $89.95 package and then just teach them to do the same thing. Get 4, teach 4... it doesn't get any easier than that.
</p>
<p>
You earn the Car Bonus by purchasing a $89.95 pack or higher and sponsoring four Brand Partners at that same package level or higher who also sponsor four Brand Partners each at that package level or higher. You are paid this bonus every month that you maintain the qualifications for it.
</p>
</div>
<img src="images\img3.jpg" class="element" alt="image">
<div class="col-lg-4">
<p>What’s even better is that instead of requiring you to drive a specific make and model, you get to pick out any car (or truck, SUV, or even motorcycle) that you want…in the color of your choice! Buy it or lease it – it’s completely up to you!
</p>
</div>
</div>
</div>
Css for element class used in image tag
.element
{
shape-outside: circle(50%);
width: 300px;
height: 300px;
float: left;
}
Please share the code to have the effect like the one in the image above.