HTML Select Box
The HTML Select Box tool generates the code necessary to create an HTML select box using the <select> tag. The following options are available via the tool:
Name: This refers to the name of the select tag.
Rows: This determines the number of options that will be contained in the select box dropdown.
Multiple Selections: This determines whether the select box will allow multiple selections.
Initial State: This determines whether the select box will be disabled.
The following is an example of the output generated by the HTML select box
tool:
<select name="sbox" multiple="multiple">
<option></option>
<option></option>
</select>