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>
<body>
<input type=textbox name=txtME>
<input type=textbox name=txtYou>
<SCRIPT language=vbscript FOR="txtME" EVENT=onfocus>
window.event.srcElement.style.backgroundcolor = "yellow"
window.event.srcElement.style.color = "blue"
</SCRIPT>
<SCRIPT language=vbscript FOR="txtME" EVENT=onblur>
window.event.srcElement.style.backgroundcolor = "white"
window.event.srcElement.style.color = "black"
</SCRIPT>
</body>
</html>