Appearance: | <TEXTAREA>...initial_value...</TEXTAREA> |
---|---|
Attributes: | NAME=string, ROWS=n, COLS=n |
These tags create fields for entering large amounts of text.
Example:
<TEXTAREA NAME="input" ROWS=5 COLS=50>...write over me...</TEXTAREA>
ROWS: sets the number of rows for the input portion of the TextBox
COLS: sets the number of columns for the input portion of the TextBox
T10D030