"Responsive Contact Form"
Bootstrap 3.3.0 Snippet by badrrehman

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="//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 ---------->
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Responsive Contact Form</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
</head>
<body>
<section class="contact-sec">
<div class="container-fluid ">
<div class="row">
<div class="col-md-12 col-sm-12 col-xs-12">
<div class="row">
<div class="col-md-2"></div>
<div class="col-md-8 col-sm-8 col-x-12">
<div class="contact-heading">
<p>Contact us</p>
</div>
<div class="contact-form">
<form>
<span>Full Name</span>
<input class="contact-input" type="text" role="textbox" placeholder="John Doe..">
<span>Email</span>
<input class="contact-input" type="email" role="textbox" placeholder="acb@xyzmail.com">
<span>Your Message</span>
<textarea class="txt-area" rows="20" cols="100" placeholder="Write your message here.."></textarea>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
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
/* followed the Bootstrap technology 3.3.7 css3 version no 1*/
/* Author :: Badr Rehman */
/* Github.com/badrrehman*/
/* Responsive Contact Form */
.contact-heading{
font-size:60px;
color:#1480D8;
text-decoration:underline;
}
.contact-form{
padding:50px;
}
.contact-form > form > span{
font-size:20px;
font-weight:bold;
padding:10px;
}
.contact-input{
font-size:18px;
color:#151515;
padding:25px;
border:1px solid #1480D8;
background-color:transparent;
width:100%;
height:20px;
margin-bottom:20px;
border-radius:3px;
transition:all 1s ease;
-webkit-transition:all 1s ease;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: