Picture placement

What is the correct code to place a picture wherever I want in my webpage? (I mean I don’t want it in the top left corner I would like to put it in a certain spot)

<DIV style="position:absolute; left: 250px; 
          top: 350px"><img src="whatever.gif"></div>

just change the values of left: and top: for where you want it to be.

Thank you. This is very helpful.