Question : please help with text and image layout in HTML

I am currently slicing from photoshop image and creating HTML for an email campaign.

It has got complicated as I have two images and some text and there is some overlap and therefore cannot use tables.

Please see image where the X's show where I am having diffictulty.

Can someone please advise how to create the HTML for this?

thanks
 
 

Answer : please help with text and image layout in HTML

And here's the HTML you'll need. :)
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
<table>
<tr>
<td>
<img src="image1.jpg"/>
</td>
<td>
TEXT TEXT TEXT TEXT TEXT TEXT 
</td>
</tr>
<tr>
<td colspan="2">
<img src="image2.jpg"/>
</td>
</tr>
<tr>
<td>
<img src="image3.jpg"/>
</td>
<td>
<img src="image4.jpg"/>
</td>
</tr>
</table>
Random Solutions  
 
programming4us programming4us