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>
<HTA:APPLICATION ID="oFinder"
APPLICATIONNAME="Finder"
BORDER="thin"
BORDERSTYLE="normal"
CAPTION="yes"
ICON=""
MAXIMIZEBUTTON="yes"
MINIMIZEBUTTON="yes"
SHOWINTASKBAR="yes"
SINGLEINSTANCE="no"
SYSMENU="yes"
VERSION="1.00"
WINDOWSTATE="maximize"/>
<TITLE></TITLE>
<META http-equiv=Content-Type content="text/html; charset=utf-8"><script id=clientEventHandlersVBS language=vbscript>
<!--
Dim strReply
strReply = "Nothing"
Sub btnReply_onclick
MsgBox strReply & " is selected"
End Sub
Sub rdoOne_onclick
rdoOne.status = True
rdoTwo.status = False
rdoThree.status = False
strReply = "ONE"
End Sub
Sub rdoTwo_onclick
rdoOne.status = False
rdoTwo.status = True
rdoThree.status = False
strReply = "TWO"
End Sub
Sub rdoThree_onclick
rdoOne.status = False
rdoTwo.status = False
rdoThree.status = True
strReply = "THREE"
End Sub
-->
</script>
</HEAD>
<BODY>
<p>
<input
id=rdoOne type=radio> One</p>
<p>
<input id=rdoTwo type=radio> Two</p>
<p>
<input id=rdoThree type=radio> Three</p>
<p>
<input id=btnReply type=button value=Reply></p>
</BODY>
</HTML>