tl  tr
  Home | Tutorials | Articles | Videos | Products | Tools | Search
Interviews | Open Source | Tag Cloud | Follow Us | Bookmark | Contact   
 HTML > Basic > Text Area

Text Area 

The following example shows using textarea tag. For texarea wrapping of text is enabled by default. Attribute wrap="off" disables text wrapping.

File Name  :  
source/HTML/basic_tags/text_area.html 
01<html>
02<body>   
03<h2>Text Area</h2>
04 
05<textarea rows="4" cols="64">
06Text area with 4 rows and 64 columns. Text area with 4 rows and 64 columns. Text area with 4 rows and 64 columns.
07</textarea>
08<br><br>
09<textarea rows="4" cols="64" wrap="off">
10Text area with 4 rows and 64 columns with text wrap disabled. Text area with 4 rows and 64 columns with text wrap disabled.
11</textarea>
12<br><br>
13<textarea rows="12" cols="10">
14Text area with 16 rows and 10 columns.
15</textarea>
16 
17</body>
18</html>

It gives the following output,
File Name  :  
source/HTML/basic_tags/text_area.html 

Text Area








 
  


  
bl  br