I want to display 2 images on the same row like this:
Image Same Text Image
If I put one image it works, but if I put both of them I get 404. I think I am doing something wrong in the code I don't have much experience with HTML and don't know what I am missing. The files are in same folder. Here is the code:
<td colspan="8" >
<h1>
<img src="/home/apps/myapp/dynamic/img/myimage1.png" style="float:left; " alt="This is my mage" height="130" width="455">
<b>Same text</b>
<img src="/home/apps/myapp/dynamic/img/myimage2.png" style="float:right; vertical-align:middle;" alt="My second image" height="130" width="454"></h1>
</td>