HTML and CSS Reference
In-Depth Information
select
The <select> element creates a menu
control in the web page. The menu
provides a way to choose between a set
of choices. The <select> element works
in combination with the <option>
element below to create a menu.
<select name="characters">
<option value="Buckaroo">Buckaroo Banzai</option>
<option value="Tommy">Perfect Tommy</option>
<option value="Penny">Penny Priddy</option>
<option value="Jersey">New Jersey</option>
<option value="John">John Parker</option>
</select>
option
The <option> element works with
the <select> element to create a
menu. Use an <option> element
for each menu item.
<select name="characters">
<option value="Buckaroo">Buckaroo Banzai</option>
<option value="Tommy">Perfect Tommy</option>
<option value="Penny">Penny Priddy</option>
<option value="Jersey">New Jersey</option>
<option value="John">John Parker</option>
</select>
Search WWH ::




Custom Search