First page Back Continue Last page Graphics
<select></select>
The select element shows a list of choices in as a pull-down menu.
<select name="class-enjoyment">
<option value="bored">I’m bored with the class</option>
<option value="great">This class is great!</option>
</select>
If instead of a pull-down menu, a list box is desired, add the SIZE attribute (size refers to the number of items):
<select name="class-enjoyment" size="2">
<option value="bored">I’m bored with the class</option> <option value="great">This class is great!</option> </select>