There are many circumstances in which
you want to allow the user to enter more than simply one line of
text. In such a situation, the widget you want to use is the Text
Area. Below is an example Text Area widget.
The previous Text Area widget was
created with the following code:
<FORM>
<TEXTAREA NAME = "demo">
</TEXTAREA>
</FORM>
Notice how you can type in multiple
lines to the text area widget and scroll up and down using the
scroll bar on the right and left and right with the scrollbar on
the bottom.
Notice also, that as usual, the input
widget includes a NAME attribute that will be used for creating
the HTTP body. In the case of the text area widget, the text
that the user types into the widget will be set as the VALUE for
this NAME.
The Text Area widget also has several
other attributes that affect how it works. The following table
outlines them: