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

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<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>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
label { margin: 20px 0 0 0; }
textarea { margin: 0 0 20px 0; }
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: