bootstrap textarea in form code example

Example 1: html bootstrap textarea

<div class="form-group">
  <label for="exampleFormControlTextarea3">Rounded corners</label>
  <textarea class="form-control" id="exampleFormControlTextarea3" rows="7"></textarea>
</div>

Example 2: bootstrap checkbox

<div>
  <div class="row">
    <div class="form-check form-check-inline">
      <input id="checkbox2" type="checkbox">
      <label for="checkbox2">Checkbox not checked</label>
    </div>
    <div class="form-check form-check-inline">
      <input id="checkbox3" type="checkbox" checked="checked">
      <label for="checkbox3">Checkbox checked</label>
    </div>
  </div>
</div>

Example 3: bootstrap form textarea

<div class="form-group">
    <label for="exampleFormControlTextarea1">Example textarea</label>
    <textarea class="form-control" id="exampleFormControlTextarea1" rows="3"></textarea>
</div>

Tags:

Html Example