Form Option

Selected

By default, the first option is displayed in the menu. This tag sets the default option to be displayed in the menu, in case it isn't the first option.

Scroller box
To create a scroller box we simply set our size to the number of rows we want to display.

<p><select size="3" name="Button">
<option> Sales Contact</option>
<option> Technical Brochure</option>
<option> Sales Brochure</option>
<option> Reference</option>
<option> Service</option>
<option> (Other)</option>
</select></p>


Drop Down box
To create a drop down box we simply set our size to display one row.

<p><select size="1" name="Subject">
<option> Choose Subject</option>
<option> Sales Contact</option>
<option> Technical Brochure</option>
<option> Sales Brochure</option>
<option> Reference</option>
<option> Service</option>
<option> (Other)</option>
</select></p>

Next we will build a popular form that asks for more information. Useful if you need to have more information from a visitor.