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="JavaScript">
<!--
var tipWin
function toolTip(tipText) {
tipWin = window.open('','','width=200,height=50,top=100,left=100')
wC = "<html><head><title>Tips</title></head><body bgcolor='#C0C0C0'>"
wC += "<table width='100%' height='100%'>"
wC += "<tr><td align='middle' valign='middle'>" + tipText + "</td></tr></table>"
wC += "</body></html>"
tipWin.document.open()
tipWin.document.write(wC)
tipWin.document.close()
}
function someFunc() {
tipWin.close()
}
//-->
</script>
</head>
<body>
<form>
<input type="button" onClick="someFunc();" onMouseOver="toolTip('This button navigates to Yahoo')" onMouseOut="javascript:tipWin.close();" Value="Button">
</form>
</body>
</html>
ALT=
TITLE=
<input type=submit value="Submit" title="Submit me">