Please choose an ice cream flavor. chocolate grape lemon strawberry vanilla
Radio buttons use the following syntax:
<INPUT TYPE="RADIO" NAME="name of variable" VALUE="value of variable"> text description
Where VALUE will be assigned to NAME when the particular radio button is selected.
Optionally you may add the CHECKED attribute. The CHECKED attribute will show the button as being pre-selected.
How can I select more than one flavor of ice cream?