HyperText Markup Language/Tag List/textarea
From Wikibooks, open books for an open world
An element of the form tag.
[edit] Format
<textarea name="any_name" cols="#_of_columns rows=#_of_rows"> This is text inside the textarea. </textarea>
[edit] Examples
<textarea name="text" cols="50" rows="10"> This is text inside textarea </textarea>
- Defines a textarea named "text" with 10 rows, 50 columns