HyperText Markup Language/Tag List/textarea

An element of the form tag.

Format edit

<textarea name="any_name" cols="#_of_columns" rows="#_of_rows">
This is text inside the textarea.
</textarea>

Examples edit

<textarea name="text" cols="50" rows="10">
This is text inside textarea
</textarea>
Defines a textarea named "text" with 10 rows, 50 columns