Text Area
Textarea allows users to input multiple lines of text into a form.
        On this page:
      
      
    Best Practices
- Use Textarea when the expected text input is longer than one sentence.
- Please read Label Guidance first.
- Textareas do not include formatting controls.
Usage
<div class="form-group">
  <label for="textarea1" class="label form-label">Textarea</label>
  <textarea class="form-control" id="textarea1" rows="5"></textarea>
</div>
