Reply to thread

Try something like this, although I try to avoid using HTML when CSS isn't allowed (which rarely happens nowadays).


<html>

<body>

<table width="100%" height="100%">

<tr>

<td>

<img src="myimage.jpg" width="100%" height="100%">

</td>

</tr>

</table>

</body>

</html>


Back
Top