HTML <textarea> Tag
The <textarea> tag defines a multi-line text input. Use it for comments, descriptions, or any long text. It has an opening and closing tag; content between them is the default value. Use the name attribute so the value is submitted with the form.
Attributes
rows and cols set the visible size (or use CSS). placeholder shows hint text when empty. disabled, readonly, required, maxlength, minlength for behavior and validation. Use <label for="id"> with matching id on the textarea for accessibility.
Best practices
Always pair textarea with a label. Use placeholder for hints; use content between tags for a real default value. Prefer CSS for sizing when possible; rows/cols are fallbacks.
