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">
Sub btnclick
Me.value = "Clicked!"
End Sub
Sub window_onload
Dim i, objBtn
For i = 1 To 4
Set objBtn = document.createElement("input")
objBtn.type = "button"
objBtn.value = "Button " & CStr(i)
Set objBtn.onclick = GetRef("btnClick")
document.body.appendChild objBtn
Next
Set objBtn = Nothing
End Sub
</script>
</head>
<body>
</body>
</html>