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>
</head>
<body>
<img src="imagename" name=image id=image>
</body>
<script language="javascript">
var intWidth = document.image.width;
var intHeight = document.image.height;
alert("Javascript=" + intWidth + "," + intHeight);
</script>
<script language="vbscript">
Dim intWidth, intHeight
intWidth = document.image.width
intHeight = document.image.height
alert("VBScript=" & intWidth & "," & intHeight)
</script>
</html>