0
0
HTMLmarkup~5 mins

Textarea in HTML

Choose your learning style9 modes available
Introduction

A textarea lets users type in multiple lines of text, like writing a note or message.

When you want users to enter a long comment or feedback.
When collecting a message in a contact form.
When users need to write a description or story.
When you want to allow editing of a paragraph or more text.
When you need a box for users to paste or write code or data.
Syntax
HTML
<textarea name="example" rows="4" cols="50">Default text here</textarea>
The