Text Area tags

<textarea> Tag
 
Textarea tag is used when the user want to give big information in the form like message. <textarea> is the only element used to send large message to other location. It can contain number of lines and columns.
 
Format:
<textarea rows=”6″ name=”S1″ cols=”27″></textarea>
 
Example Page in browser will look like
<form>
write your message here<br>
<textarea rows=”4″ name=”S1″ cols=”22″></textarea>
</form>
write your message here

 
Name can given of yours choice. You can check the textarea field by writing in it.