Check Boxes and Radio Buttons

Check boxes allow the user to select one or more options. Each check box must have a unique name. Radio buttons allow only one choice within a group of buttons. Each radio button within a group should have the same name. You can create more than one group of radio buttons by using different names.

<INPUT TYPE="{CHECKBOX|RADIO}" NAME="name" VALUE="value" [CHECKED]> 

where: