I am trying to place an image next to my signature line details. However, when I use the code below, the last two lines of the text are aligned under the signature. How can I modify the code?
img {
width: 100px;
border-radius: 50px;
float: left;
margin-right: 10px;
}
p.Name {
font-weight: bold;
}
<img src="https://via.placeholder.com/150">
<p class="Name">John Smith</p>
<p>123 Main Street</p>
<p>Anytown, USA</p>
<p>123 4567</p>
<p>johnsmith@gmail.com</p>