Radio buttons - selecting only one of a choice
Vote for only one (1) of the following options:
Netscape Navigator
Microsoft Internet Explorer
Quarterdeck Spyglass
HTML:
<INPUT TYPE="radio" NAME="choice1" VALUE="netscape" CHECKED>
HTML:
<INPUT TYPE="radio" NAME="choice1" VALUE="microsoft">
HTML:
<INPUT TYPE="radio" NAME="choice1" VALUE="spyglass">
The first option is pre-set with CHECKED as a default.
By setting the variable NAME= to the same name, only one VALUE= can be sent.
The options are mutually exclusive.
To transmit your selection, press this button.
HTML:
<INPUT TYPE="submit" VALUE="Press to Vote">