You have created an HTML page with an article, but the spacing between the image and text is missing in the displayed image.
I need the text to be positioned beside the image to give it a unique shape.
Here is the HTML code:
/* Start content Article .. */
.contentmqal {
width: 80%;
float: left;
}
article {
margin: 15px;
background: #f7e9e3;
border-radius: 8px;
padding: 8px;
}
article section {
float: right;
clear: left
}
article section p {
font-family: 'Source Sans Pro', sans-serif;
}
<div class="contentmqal">
<!-- Start Content Article -->
<article>
<section>
<h3>One Year ago: Durian Fruit</h3>
<p>The durian is a tropical fruit. It is from Malaysia. People know it for its sharp smell. Some people say... <span>read more</span></p>
</section>
<img src="image/a1.jpg" alt="Durain Fruit" title="One Year ago: Durian Fruit" width="238px" />
</article>
</div>
<!-- End Content Artcle -->
I need the text to be in a red box.