How do I middle align and left align this text to the image in the button?
I know I can use HTML code, but what does that code look like?
Firstly, left align all text to the image?
And then how do I center align the text to the image?

How do I middle align and left align this text to the image in the button?
I know I can use HTML code, but what does that code look like?
Firstly, left align all text to the image?
And then how do I center align the text to the image?

Best answer by ArunDubey
See there are two ways.
<table style="width: 100%">
<tr>
<td style="width: 30%"> <img src="image URL" alt="xyz" style="width:100%"></td>
<td style="width: 70%">Description of image</td>
</tr>
</table><html>
<head>
<style>
* {
box-sizing: border-box;
}
.tr::after {
content: "";
clear: both;
display: table;
}
</style>
</head>
<body>
<div class="tr">
<div id="x1" style="float: left; width: 30%; padding: 2px;">
<img src="image URL" alt="xyz" style="width:100%">
</div>
<div id="x2" style="float: left; width: 70%; padding: 2px;">
Description of image
</div>
</div>
</body>
</html>
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.