Multi-line (scrolling) Input
Box
|
<textarea name="areabox"
rows="3" cols="20">
textarea { font-family: "andale mono", "monotype.com", "courier new", monospace; color: #00FF00;}
textarea.small { font-family: "andale mono", "monotype.com", "courier new", monospace; font-size: 75%;color: #0000FF;}
Example of a multiple line input box (Text Area)
</textarea>
|
<textarea> This multiple line input box (or Text Area), generates the parameter named areabox. The
initial value is set by the text between the start tag and end tag, the size is
represented in rows (3) and columns (20). |