If you want to position an image in the text, you can use the HTML 'img' tag. This tag allows you to specify the image’s height, width and alignment within the text.
First you will want to insert the 'img' tag into the text like so:
<img src = "image URL" />
The "image URL" will need to be the URL of the image you are using.
To specify the size:
The height and width are set with the following attributes in the 'img' tag:
height = "XXpx"
width = "XXpx"
For example, if you want the image to be 500 pixels wide and 700 pixels tall, you would type:
<img src = "image URL" height = "700px" width = "500px" />
To specify the positioning:
The alignment of the image is set with the attribute “align”. This can be set to any of the following:
left (image will be placed on the left side of the text)
right (image will be placed on the right side of the text)
top (image will be placed above the text)
bottom (image will be placed below the text)
center (image will be centered in the text)
For example, if you want the image to be on the left side of the text, you would type:
<img src = "image URL" height = "700px" width = "500px" align = "left" />
Once you are done, save your HTML file. The image will now be properly positioned with respect to the text.
I hope this answers your question. If you have any further queries, please don't hesitate to ask.