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">
function toggle() {
var is_checked = window.document.form_1.check_1.checked;
if (is_checked == true) {
window.document.form_1.check_1.checked = false;
document.images['chkBox1'].src='unchecked.gif';
} else {
window.document.form_1.check_1.checked = true;
document.images['chkBox1'].src='checked.gif';
}
}
</SCRIPT>
</HEAD>
<BODY BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#0000FF" VLINK="#800080" ALINK="#FF0000">
<H1>CheckBox with image</H1>
<FORM NAME="form_1" ACTION="something.php" METHOD="POST">
<A HREF="#" onClick="javascript:toggle();" STYLE="text-decoration:none;">
<IMG SRC="unchecked.gif" BORDER="0" NAME="chkBox1">
<INPUT TYPE="checkbox" NAME="check_1" STYLE="display ='none';">Check me!
</A><BR><BR>
<INPUT TYPE="submit" VALUE="Continue ...">
</FORM>
</BODY>
</HTML>