Answers for "bootstrap form text"

2

input with bootstrap

<form>
  <div class="form-group">
    <label for="exampleInputEmail1">Email address</label>
    <input type="email" class="form-control">
    <small id="emailHelp" class="form-text text-muted">Hello, World</small>
  </div>
 </form>
Posted by: Guest on August-27-2020
0

bootstrap form textarea

<div class="form-group">
    <label for="exampleFormControlTextarea1">Example textarea</label>
    <textarea class="form-control" id="exampleFormControlTextarea1" rows="3"></textarea>
</div>
Posted by: Guest on March-10-2021

Browse Popular Code Answers by Language