2. HTML Form Tag

2.7. Text Area

          Textarea is another form element that accepts text input is the <textarea> tag. The <textarea> tag is used to accept text input with multiple lines. rows and cols attributes can be used to control the initial size of the textarea.  The textarea could be resized unless the CSS property resize:none is used.

<form>

    <label for="comments">Comments: </label></br>

    <textarea id="tArea" name="comments" rows="4" cols="50"> </textarea>

</form>


Output: