revenue, to display two images next to each other you can do the following
HTML Code:
<table>
<tr>
<td>
<img src="image1.jpg">
</td>
<td>
<img src="image2.jpg">
</td>
</tr>
</table>
or
HTML Code:
<div>
<div style="float:left;" >
<img src="image1.jpg">
</div>
<div>
<img src="image2.jpg">
</div>
</div>