Creates a textarea element(multi-line text input control) where the user can write text. Unlimited numer of characters can be written in a textarea. The size of the text area can be changed using the required cols and rows attributes. Inline element
<textarea attributes> ... </textarea>
<textarea cols=”30” rows=”10”>This is the content of the textarea.. </textarea>