HTML doesn't really work that way.
To place an image in a specific location on the page you would need to do
one of the following -
1. Put a table on the page and place the image into a cell of the table.
Size and structure the table in such a way that the image is found at the
location you desire.
2. Position the image with CSS so that it is placed at precisely the
desired location (note - this method will require quite a bit of preparation
on your part to make sure that you understand all of the up- and downsides
to the use of positioned elements).
Both of these approaches are going to require -
1. You forget everything you knew about 'made for print' apps like
Publisher and Word, and
2. You learn some basics of HTML and CSS
Does that help at all?