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>
<title>Selection</title>
</head>
<body>
<form method="POST" name="myform">
<p>Chose a favorite Flavor of Ice Cream</p>
<p><input type="radio" value="Vanilla" checked name="radiobutton" onchange="OtherFlavor.style.visibility='hidden'">Vanilla</p>
<p><input type="radio" value="Chocolate" name="radiobutton" onchange="OtherFlavor.style.visibility='hidden'">Chocolate</p>
<p><input type="radio" value="Chunky Monkey" name="radiobutton" onchange="OtherFlavor.style.visibility='hidden'">Chunky Monkey</p>
<p><input type="radio" value="Phish Food" name="radiobutton" onchange="OtherFlavor.style.visibility='hidden'">Phish Food</p>
<p><input type="radio" value="Other" name="radiobutton" onchange="OtherFlavor.style.visibility='visible'">Other</p>
<p><input type="text" name="OtherFlavor" size="20" value="Enter Flavor" style="visibility:hidden"></p>
</form>
</body>
</html>