"Ask Form"
Bootstrap 3.3.0 Snippet by arashz

<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script> <script src="//code.jquery.com/jquery-1.11.1.min.js"></script> <!------ Include the above in your HEAD tag ----------> <div class="container"> <div class="row"> <form class="form-horizontal"> <fieldset> <!-- Form Name --> <legend>Ask Your Friend</legend> <!-- Select Basic --> <div class="form-group"> <label class="col-md-4 control-label" for="where">Where</label> <div class="col-md-4"> <select id="where" name="where" class="form-control"> <option value="1">Option one</option> <option value="2">Option two</option> </select> </div> </div> <!-- Select Basic --> <div class="form-group"> <label class="col-md-4 control-label" for="what">What</label> <div class="col-md-4"> <select id="what" name="what" class="form-control"> <option value="1">Option one</option> <option value="2">Option two</option> </select> </div> </div> <!-- Select Basic --> <div class="form-group"> <label class="col-md-4 control-label" for="category">Category</label> <div class="col-md-4"> <select id="category" name="category" class="form-control"> <option value="1">Option one</option> <option value="2">Option two</option> </select> </div> </div> <!-- Multiple Checkboxes --> <div class="form-group"> <label class="col-md-4 control-label" for="place_attributes">Attributes</label> <div class="col-md-4"> <div class="checkbox"> <label for="place_attributes-0"> <input type="checkbox" name="place_attributes" id="place_attributes-0" value="1"> Option one </label> </div> <div class="checkbox"> <label for="place_attributes-1"> <input type="checkbox" name="place_attributes" id="place_attributes-1" value="2"> Option two </label> </div> </div> </div> <!-- Textarea --> <div class="form-group"> <label class="col-md-4 control-label" for="your_question">Your Question</label> <div class="col-md-4"> <textarea class="form-control" id="your_question" name="your_question">I'm looking for a Persian Restaurant near San Jose Please click here to suggest one to me : http://www.choicematch.com/answer/rERewRTrer</textarea> </div> </div> </fieldset> </form> </div> </div>

Related: See More


Questions / Comments: