An easy way would be to display the image as the background of the div like this....
css...
HTML Code:
.myimagediv{
background:url(images/mypic.png);
width:300px;
height:100px;
}
then place this code where you want the image to show up...
HTML Code:
<div class ='myimagediv'> </div>
change the css for 'myimagediv' for the different styles and you achieve that effect without using image tags.