Radio Buttons
Radio buttons are used when you want the user to choose only one of a small group of options.
Radio buttons are created using the <INPUT> tag. When used to create checkboxes, the INPUT tag has three required attributes, TYPE, NAME, and VALUE, and two optional attribute, ID and CHECKED.
Sample HTML source for a radio button:
<input type="radio" name="title" value="Ms" checked="checked">
See the table below for more examples of radio buttons
The TYPE Attribute (required)
The TYPE attribute takes the value "radio" when used to create a radio button.
The NAME Attribute (required)
The author of the form assigns a value to the NAME attribute. Use the same name for all of the radio buttons in each group, this way the user is limited to exactly one option in the group.
The VALUE Attribute (required)
Use the VALUE attribute to distinguish between the different radio buttons in a group.
The ID Attribute (optional, but required by accessibility standards)
The ID attribute is used to explicitly associate the specific Input tag with a specific LABEL tag. ID attributes are unique within a page.
The CHECKED Attribute (optional)
The CHECKED attribute indicates which radio button should be selected when the page is first loaded. Only one radio button in each group may be CHECKED. The CHECKED attribute does not take a value.
