Basic HTML

 
 
          

Form >> Create a Form >> Text Area

 

Text Area

A TEXTAREA control creates a field that allows multiple lines of input. 1.ROWS, which specifies the number of rows in the textarea field. 2.COLS, which specifies the number of columns in the textarea field.

HTML Code Sample Output
<table border=1> <tr> <textarea cols=15 rows=5>type here</textarea> </table>

Form >> Create a Form Form >> Create a Form >> Password Field