"Compact Contact Form (Bootstrap 3)"
Bootstrap 3.0.0 Snippet by danielcktan

<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//netdna.bootstrapcdn.com/bootstrap/3.0.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"> <div class="col-md-8 col-md-offset-2 well contactform"> <form role="form"> <div class="col-md-6"> <label>First Name</label> <input class="form-control input-lg" placeholder="Your First Name" type="text"> <label>Last Name</label> <input class="form-control input-lg" placeholder="Your Last Name" type="text"> <label>Email Address</label> <input class="form-control input-lg" placeholder="Your email address" type="text"> <label>Subject</label> <select class="form-control input-lg" id="subject" name="subject"> <option selected value="na"> Choose One: </option> <option value="service"> General Customer Service </option> <option value="suggestions"> Suggestions </option> <option value="product"> Product Support </option> </select> </div> <div class="col-md-6"> <label>Message:</label> <textarea class="form-control input-lg" id="message" name="message" rows="10"></textarea> <div> <button class="btn btn-primary pull-right btn-lg" type= "submit">Send</button> </div> </div> </form> </div> </div> </div>
label { margin: 20px 0 0 0; } textarea { margin: 0 0 20px 0; }

Related: See More


Questions / Comments: