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