Textarea

  • STEPS

    1. Textarea

    
                         <textarea class="form-control"  id="comment" name="comment"></textarea>
                     
    An textarea should have name and value

    2. with label

    
                     <div class="form-group">
                          <label for="comment">Comment:</label>
                          <textarea class="form-control"  id="comment" name="comment"></textarea>
                      </div>