I don't want the third paragraph to float like two others. What should I do that my further paragraphs don't float like the first two?
img {
width: 100px;
border-radius: 50px;
float: left;
margin-right: 10px
}
p.username {
font-weight: bold;
}
<img src="https://via.placeholder.com/100" alt="My picture" width="default" height="default">
<p class="username">@BilalKhan615</p>
<p>Getting started with HTML and CSS!</p>
<!-- This is the paragraph which I do not want to float like the other two -->
<p> Hello Everyone!</p>