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>Loading</title>
<script language="javascript">
<!--
var win = window.open("about:blank","welcome");
win.document.writeln("<html><head><title>Welcome</title></html>");
win.document.writeln("<body><h3>Your page is loading...</h3></body>");
win.document.writeln("</html>");
function closeWin()
{
win.close();
}
// -->
</script>
<body onload="closeWin();">
<script>
// Take a long time to load
for (var i=0;i<100000;i++)
{
document.writeln("<h1>Text"+i+"</h1><br>");
}
</script>
</body>
</html>