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>Load and Wait</title>
</head>
<body onLoad="waitSixSeconds()">
<script language="JavaScript1.2">
function waitSixSeconds(){
window.setTimeout("bareTeeth()", 6000);
}
</script>
<script language="JavaScript1.2">
function bareTeeth(){
document.write("<h1>Growl</h1>");
}
</script>
</body>
</html>
<META HTTP-EQUIV="refresh" content="10; url="someplace">