.center {
text-align: center
}
<h1 class="center">Title</h1>
<div style="float: left;">
<p>Some Text</p>
</div>
<div style="float: right;">
<img src="image.png">
</div>
When I run this code the heading appears on the center of the page. However, I want the heading to center above the paragraph. Can anyone help me do this?