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.
default.html/asp
<html>
<script language="vbscript">
Sub Redirect_OnClick()
window.navigate("test.html")
End Sub
</script>
<body>
<input type=button id=Redirect value="Redirect">
</body>
</html>
test.html
<html>
<body>
Redirected!
</body>
</html>