FORMS:   

Menus and Lists provide an efficient way for the user to choose an option from a list of valid values. Menus are similar to Radio Buttons, except they are designed for larger lists and display as a drop down box. Lists display as a scroll box or a set number of options in a box and give the savvy user the option of making multiple selections.

<form method="post" action="http://wwwebworks.biz/bit112/showFormData.php" name="initial">

<label> <select name="choose1">
     <option value="red">Red</option>
     <option value="blue">Blue</option>
     <option value="green" selected>Green</option>
</select></label>

<label> Favorite Color(s): <select name="choosemore" size="3" multiple>
     <option value="red">Red</option>
     <option value="blue" >Blue</option>
     <option value="green">Green</option>
</select></label>
</form>

 

 


Application
: Add a menu or list to my_form.html. Make one preselected.
Example
: Form with a variety of 'list/menu' fields.