Radio Buttons

Radio Buttons
 
Radio Buttons are used when you want the user to select one of a limited number of choices.
 
Format:
<form><input type=”radio” name=”sex” value=”male”> Male<br></form>
 
example page in browser will look like
<form>
<input type=”radio” name=”sex” value=”male”> Male
<br>
<input type=”radio” name=”sex” value=”female”> Female
</form>
Male
Female
 
Note that only one option can be chosen. you can check them by clicking on radio buttons