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.
<html>
<head>
<title>image</title>
<script type="text/javascript">
<!--
function resizeWindow(img)
{
resizeTo(parseInt(img.style.width), parseInt(img.style.height)+50);
}
// -->
</script>
</head>
<body onload="resizeWindow(document.getElementById('the_img'));">
<img name="the_img" id="the_img" src="pic.jpg" width="100" heigh="200">
</body>
</html>