"Search Form Booking"
Bootstrap 3.0.0 Snippet by sachin6185

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 ---------->
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<div class="flight-engine">
<div class="container">
<div class="tabing">
<ul>
<li><a class="active" href="#1"><i class="fa fa-plane" aria-hidden="true"></i> Flight</a>
</li>
<li><a href="#2"><i class="fa fa-plane" aria-hidden="true"></i> Flight</a>
</li>
</ul>
<div class="tab-content">
<div id="1" class="tab1 active">
<div class="flight-tab row">
<div class="persent-one">
<i class="fa fa-map-marker" aria-hidden="true"></i>
<input type="text" name="dep" class="textboxstyle" id="dep" placeholder="From City or airport">
</div>
<div class="persent-one">
<i class="fa fa-map-marker" aria-hidden="true"></i>
<input type="text" name="dep" class="textboxstyle" id="arival" placeholder="To City or airport">
</div>
<div class="persent-one less-per">
<i class="fa fa-calendar" aria-hidden="true"></i>
<input type="text" name="dep" class="textboxstyle" id="from-date1" placeholder="Depart">
</div>
<div class="persent-one less-per">
<i class="fa fa-calendar" aria-hidden="true"></i>
<input type="text" name="dep" class="textboxstyle" id="to-date" placeholder="Returrn">
</div>
<div class="persent-one">
<i class="fa fa-user" aria-hidden="true"></i>
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
.flight-engine {
position: absolute;
left: 0px;
right: 0px;
bottom: 50px;
padding: 20px;
z-index: 999;
}
.tab1.active {
display: block
}
.tab1 {
display: none
}
.tabing {
float: left;
width: 100%;
background: rgba(0, 130, 185, .8);
padding: 0 10px 10px 10px;
color: #fff;
}
.tabing ul {
margin: 0px;
padding: 0px;
list-style: none;
width: 100%;
float: left;
}
.tabing ul li {
float: left;
}
.tabing ul li a {
display: block;
padding: 5px;
text-decoration: none;
color: #fff;
background: rgba(0, 130, 185, .9);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: