Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Normal
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>
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>