Making a table with an image you can write on!


I've split the image we're using, "mirror.jpg", into three pieces, "mirror_1x1" , "mirror_2x1" and "mirror_3x1" .

Accordingly, we need to make a table that will put the pieces together:

<table>
<tr>
<td>
<img src="mirror_1x1.jpg"></td>
</tr>
<tr>
<td>
<img src="mirror_2x1.jpg"></td>
</tr>
<tr>
<td>
<img src="mirror_3x1.jpg"></td>
</tr>
</table>

Hosted by www.Geocities.ws

1