previous |
start |
next
Form Elements #2
There are two other markup tags used in forms:
SELECT
- allows the user to select from an enumerated list of values.
Each value is given by an
OPTION
markup tag,
which can take a couple of extra attributes.
TEXTAREA
- presents a multi-line text field into which the user can type
information. It is specified as a number of
ROWS
and COLS
and can have
a NAME
attribute and an initial value.
previous |
start |
next