Text Area
Text field is a form component which allows us to enter the single line text,what if we want to have multiple line text?Then you must use the text area components.
Syntx
<textarea cols='20' rows='20' name='myname'>
Example
Text field is a form component which allows us to enter the single line text,what if we want to have multiple line text?Then you must use the text area components.
Syntx
<textarea cols='20' rows='20' name='myname'>
Example
<html> <head> <title> HTML Textarea </title> </head> <body> <form name='form1'> Enter the text<textarea cols='20' rows='20' name='myname'> </textarea> </form> </body> </html> |
HTML Textarea
Output
Enter the text
0 comments:
Post a Comment