1<textarea id="txtid" name="txtname" rows="4" cols="50" maxlength="200">
2A nice day is a nice day.
3Lao Tseu
4</textarea>
1<!DOCTYPE html>
2<html>
3 <head>
4 <title>HTML textarea Tag</title>
5 </head>
6
7 <body>
8 <textarea rows = "5" cols = "40" maxlength = "100" name = "description">
9 Enter answer here...
10 </textarea>
11
12 </body>
13</html>