Please send questions to
st10@humboldt.edu .
<html>
<!-- try_radio1.html
adapted from example in HTML Tutorial at
http://www.w3schools.com/html/html_forms.asp
adapted by: Sharon Tuttle
last modified: 11-09-06
-->
<head>
<title> Playing with radio buttons
</head>
<body>
<h3> Playing with radio buttons </h3>
<h4> (adapted example from HTML Tutorial at
http://www.w3schools.com/html/html_forms.asp)</h4>
<form method="post"
action="http://redwood.humboldt.edu/~st10/ice_cream_survey.php">
Which one flavor of ice cream do you choose today? <br>
<input type="radio" name="ice_cream_flavor" value="chocolate">
Chocolate <br>
<input type="radio" name="ice_cream_flavor" checked="checked"
value="vanilla">
Vanilla <br>
<input type="radio" name="ice_cream_flavor" value="strawberry">
Strawberry <br>
<br><br>
<input type="submit" value="submit">
</form>
</body>
</html>