"contact form"
Bootstrap 4.1.1 Snippet by webcoderskull

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
<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 ---------->
<section class="get-in-touch">
<h1 class="title">Get in touch</h1>
<form class="contact-form row">
<div class="form-field col-lg-6">
<input id="name" class="input-text js-input" type="text" required>
<label class="label" for="name">Name</label>
</div>
<div class="form-field col-lg-6 ">
<input id="email" class="input-text js-input" type="email" required>
<label class="label" for="email">E-mail</label>
</div>
<div class="form-field col-lg-6 ">
<input id="company" class="input-text js-input" type="text" required>
<label class="label" for="company">Company Name</label>
</div>
<div class="form-field col-lg-6 ">
<input id="phone" class="input-text js-input" type="text" required>
<label class="label" for="phone">Contact Number</label>
</div>
<div class="form-field col-lg-12">
<input id="message" class="input-text js-input" type="text" required>
<label class="label" for="message">Message</label>
</div>
<div class="form-field col-lg-12">
<input class="submit-btn" type="submit" value="Submit">
</div>
</form>
</section>
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
.get-in-touch {
max-width: 800px;
margin: 50px auto;
position: relative;
}
.get-in-touch .title {
text-align: center;
text-transform: uppercase;
letter-spacing: 3px;
font-size: 3.2em;
line-height: 48px;
padding-bottom: 48px;
color: #5543ca;
background: #5543ca;
background: -moz-linear-gradient(left,#f4524d 0%,#5543ca 100%) !important;
background: -webkit-linear-gradient(left,#f4524d 0%,#5543ca 100%) !important;
background: linear-gradient(to right,#f4524d 0%,#5543ca 100%) !important;
-webkit-background-clip: text !important;
-webkit-text-fill-color: transparent !important;
}
.contact-form .form-field {
position: relative;
margin: 32px 0;
}
.contact-form .input-text {
display: block;
width: 100%;
height: 36px;
border-width: 0 0 2px 0;
border-color: #5543ca;
font-size: 18px;
line-height: 26px;
font-weight: 400;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: