Example of HTML Form Textarea - HTML CSS HTML

HTML CSS examples for HTML:Form

Description

Example of HTML Form Textarea

Demo Code

ResultView the demo in separate window

<!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> &lt;textarea rows="3" cols="30" name="address" id="address"&gt;&lt;/textarea&gt; 
  </form>   
 </body>
</html>

Related Tutorials