Image 
  Tag continued...
  add a <p> or a <br /> 
  tag before the image tag to have it start on a new line. 
   
example1>>> 
  without breaking or a new 
  paragraph
  example2>>> 
  with a break tag 
  example3>>> 
  with a parapraph tag 
  <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 
<html>
  <head>
  <title>Pony Pony Pony</title>
  <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
  </head>
  <body>
  Here is my pony<br />
  <img src="pony.gif" />
  </body>
  </html>