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>
Next > >