A textarea is an element on a webpage that you can type into.
Basic
To create textareas, simply add the `.input` class to the `textarea` element.
<textareaclass="input"></textarea>
Placeholder
Basic textarea with placeholder.
<textareaclass="input"placeholder="This is placeholder"
></textarea>
Label/Message
You can use Field Group with `textarea` to create complex elements.
<labelclass="field-group field-group-error"data-label="Observation"data-message="Required"
><textareaclass="input"placeholder="Let your observation"
></textarea><spanclass="addon bi-pencil-fill"></span></label>
Simple usage
A textarea example with copy button, character counter, label and message.
<labelclass="field-group"data-label="Leave your question"data-message="We'll get back to you soon."
><divclass="input input-group relative"><textareatype="text"id="message"class="input w-full h-full"placeholder="Say hi, we'll be happy to chat with you"
></textarea><iclass="btn bi bi-clipboard"></i><spanid="counter"class="badge absolute -top-3 -right-3">0/100</span></div><spanclass="addon bi-pencil-fill"></span></label>