HTML CSS examples for HTML:Form
Example of HTML Form Textarea
<!DOCTYPE html> <html lang="en"> <head> <title>Example of HTML Form Textarea</title> </head> <!-- www . j a v a2 s . co m--> <body> <form> <label for="address">Address:</label> <textarea rows="3" cols="30" name="address" id="address"></textarea> </form> </body> </html>