Multiple-Line Text Input Controls
This is used when the user is required to give details that may be longer than a single sentence. Multi-line input controls are created using HTML textarea tag.
Syntax
<textarea> …
</textarea>
Example for Multiple-Line Text Input Controls
<form>
Description : <br />
<textarea rows = “6” cols = “60” name = “description”>
Enter description here…
</form>