Oh. I see your problem. To use styles, change your <img /> to <img style="styles_you_want" />. For hspace,vspace, use margins:
margin:12px 8px 5px 7px;
The correct sequence is top,right,bottom,left.
Or you could do this:
margin-top:12px;
margin-bottom:8px;
margin-left:5px;
margin-right:7px;
For align, simply do:
align:top;
other values allowed:
bottom, middle, left, right
Rick