TEXTAREA tag can be used to place a multiline text
entry field with optional default contents in a fill-out form. The
attributes to TEXTAREA are as follows:
NAME is the symbolic name of the text entry field.
ROWS is the number of rows (vertical height in
characters) of the text entry field.
COLS is the number of columns (horizontal width in
characters) of the text entry field.
TEXTAREA fields automatically have scrollbars; any amount
of text can be entered in them.
The TEXTAREA element requires both an opening and
a closing tag. The default contents must be straight ASCII text. Newlines
are respected
<TEXTAREA NAME="example"> Default text goes here. </TEXTAREA> |
<TEXTAREA NAME="example" ROWS=5 COLS=25> Here's an example specifying the size. </TEXTAREA> |
<TEXTAREA NAME="example" ROWS=3 COLS=28> TABS! </TEXTAREA> |
