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>
<script language=vbscript>
Const constOne = 387
Const constTwo = 17
</script>
<script language=javascript>
function b1Click()
{ alert(constOne) }
</script>
<script language=vbscript>
Sub b2Click()
alert constTwo
End Sub
</script>
</head>
<body>
<input type=button name=button1
id=button1 value="Try me" onclick="b1Click()">
<input type=button name=button2
id=button2 value="Try me too" onclick="b2Click()">
</body>
</html>