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>
<body onLoad="fnDisplay()"
<div id=divGraphic name=divGraphic style="visibility:visible;position:absolute;left:0;top:0">
Your graphic goes here
</div>
<div id=divBody name=divBody style="visibility:hidden;position:absolute;left:0;top:0">
Your other stuff goes here<br>
and here<br>
and here...
</div>
</body>
</html>
<script language="javascript">
function fnDisplay(){
alert("Finished building body. Display it and get rid of graphic.");
divGraphic.style.visibility='hidden';
divBody.style.visibility='visible';
}
</script>