The <TEXTAREA> allows a text entry area with multiple rows.
Note that it's a container: it has a closing tag.
The enclosed text is displayed as the window contents.
tag and the terminating </TEXTAREA> tag.
<Form Method=POST
Action="mailto:Fake@NoWhere.org">
<Textarea rows=5 cols=55
name="msg">Hi Fake,
</Textarea>
<Input type=submit
value="Send it to Fake">
</Form>
ROWS
is the number of vertical rows to be displayed for text entry.
COLS
is the number of horizontal columns to be displayed for text entry.
If you would like default text to appear within the textarea,
simply type the text in between the start and end TEXTAREA
tags.