Aligning images in HTML is easy. Just add the appropriate CSS styling to your img tag.
For example, to align an image to the left, you would add this CSS to your img tag:
<img src="yourimage.jpg" style="float:left;">
To align an image to the right, you would add this CSS to your img tag:
<img src="yourimage.jpg" style="float:right;">
If you want your image to appear in the center of your page, you can use this CSS:
<img src="yourimage.jpg" style="display:block; margin-left:auto; margin-right:auto;">
If you want to learn more about CSS, I would recommend checking out this link: https://www.w3schools.com/css/