"Contact Form "
Bootstrap 4.1.1 Snippet by Shailesh Kushwaha

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
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<div class="row no-margin footer2">
<div class="container m-pad aos-init aos-animate" data-aos="fade-up">
<h3 data-aos="fade-up" class="aos-init aos-animate">Book Site Visit</h3>
<div class="col-md-12 col-xs-12 col-sm-12">
<form action="#" method="post" name="contact_form1" autocomplete="off">
<div class="col-md-4 col-xs-12 col-sm-12 frm1">
<input type="text" class="form-control" placeholder="Name" name="name" autocomplete="off" required="">
</div>
<div class="col-md-4 col-xs-12 col-sm-12 frm1">
<input type="number" class="form-control" placeholder="Mobile Number" name="phone" autocomplete="off" required="">
</div>
<div class="col-md-4 col-xs-12 col-sm-12 frm1">
<input type="email" class="form-control" placeholder="Email Id" name="email" autocomplete="off" required="">
</div>
<div class="col-md-4 col-xs-12 col-sm-12 frm1">
<input type="text" class="form-control" placeholder="Interested in Site Visit.." value="Interested in Site Visit.." name="message" autocomplete="off" required="">
</div>
<div class="col-md-4 col-md-offset-4 col-xs-12 col-sm-12 frm1">
<input type="submit" class="form-control" value="SUBMIT">
</div>
</form>
</div>
</div>
</div>
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
.footer2 {
background: #343434;
padding: 40px 0;
}
.frm1 {
color: #fff;
border-radius: 0px;
background: transparent;
margin-top: 10px;
padding: 8px 4px 4px;
font-family: 'Roboto', sans-serif;
}
.frm1 input[type="text"], input[type="email"], input[type="number"] {
border-radius: 0;
height: 45px;
}
.frm1 input[type="submit"] {
border-radius: 0;
height: 45px;
background: #fcfcfc;
font-size: 14px;
font-weight: 600;
color: #000;
letter-spacing: 2px;
}
.frm1:hover input[type="submit"] {
background: #000;
color: #fff;
}
.modal {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1040;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: