previous | start | next

SELECT

<SELECT
NAME=
name
SIZE=n>
</SELECT>

Denotes a list box or drop-down list. The end-tag encloses any OPTION elements that may appear within the SELECT element.

NAME=name
Specifies a name for the list box or drop-down list.
SIZE=n
Specifies the height of the list control.

Example

<SELECT NAME="Cars" SIZE="1">
    <OPTION VALUE="1">BMW
    <OPTION VALUE="2">PORSCHE
    <OPTION VALUE="3" SELECTED>MERCEDES
</SELECT> 


previous | start | next