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.
<style>
.startHidden{
display:none;
}
#loading{
padding:1px 3px 1px 3px;
background-color:#990000;
color:white;
display:inline;
}
</style>
<script>
function showdiv(show,hide){
document.getElementById(show).style.display="block"
document.getElementById(hide).style.display="none"
}
</script>
<body onload="showdiv('showmeonload','loading')">
<div id="showmeonload" class="startHidden">
wibble
</div>
<div id="loading">
Loading...
</div>
</body>