"Simplest contact form"
Bootstrap 3.1.0 Snippet by fygwin

<link href="//netdna.bootstrapcdn.com/bootstrap/3.1.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.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-16"> <div class="well well-sm"> <form class="form-horizontal" action="" method="post"> <fieldset> <!-- Message body --> <div class="form-group"> <label class="col-md-2 control-label" for="message">Say something..</label> <div class="col-md-10"> <textarea class="form-control" id="message" name="message" placeholder="Please enter your message here..." rows="5"></textarea> </div> </div> <!-- Form actions --> <div class="form-group"> <div class="col-md-12 text-right"> <button type="submit" class="btn btn-primary btn-md">Submit</button> </div> </div> </fieldset> </form> </div> </div> </div> </div>
body {padding-top:20px;}

Related: See More


Questions / Comments: