...

/

<textarea>

<textarea>

Learn how textarea tag works in HTML.

The <textarea> tag in HTML

The <textarea> tag defines a multi-line text box to input data from the user. The structure of the <textarea> tag is as follows:

<textarea id="aboutMe" name="aboutMe" rows="2" cols="5">
I am a content writer at Educative, Inc.
</textarea>

The <textarea> tag displays a multi-line text box for data input. The height and width of the text box are usually defined by rows and cols attributes, respectively. The row ...