<!DOCTYPE HTML><HTML><Head><MetaCharSet= "Utf-8"><title>Untitled Document</title></Head><Body><form><inputtype= "Radio"name= "Sex"value= "Man">Man</BR><!--take sex selection as an example -<inputtype= "Radio"name= "Sex"value= "Woman">Woman</BR><!--a second option -<!--a normal split line. -Please choose your favorite cartoon characters (all my wife is not allowed to choose)<inputtype= "checkbox"name= "Name"value= "One">Long<!--Set the first check box -<inputtype= "checkbox"name= "Name"value= "both">Park<!--a second -<inputtype= "checkbox"name= "Name"value= "three">Royal Osaka-Mae Qin<BR/><!--It's a normal split line. -still choose (not optional)<Selectname= "Name"><!--Create a drop- down list -<optionvalue= "One">Long</option><!--values for each list -<optionvalue= "both">Park</option><optionvalue= "three"selected= "Selected">Royal Osaka-Mae Qin</option><!--the selected item is a predetermined primary value. -</Select></form></Body></HTML>
Another: drop-down option group
<!DOCTYPE HTML><HTML><Head><MetaCharSet= "Utf-8"><title>Untitled Document</title></Head><Body><Select><Optgrouplabel= "One"><optionvalue= "1">1</option><optionvalue= "2">2</option></Optgroup><Optgrouplabel= "Two"><optionvalue= "3">3</option><optionvalue= "4">4</option></Optgroup></Select></Body></HTML>
Form labels (options)