how to use textarea in HTML
Syntax
Syntax of HTML <textarea> tag
<textarea>.......</textarea>
<textarea>.......</textarea>
how to use textarea in HTML
Example
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<textarea rows="4" cols="50"> At webdesigningtheory.blogspot.com you will learn
offer free tutorials in all web development technologies learn visit us.
</textarea>
</body>
</html>
how to use textarea in HTML
Explain Program
Step 1]
<!DOCTYPE html>
- This declare the document type.
- browser that the document is written in html

