"Tour Form"
Bootstrap 4.0.0 Snippet by Md. Saiful Alam Sabuj

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/4.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.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 ---------->
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css" integrity="sha384-/Y6pD6FV/Vv2HJnA6t+vslU6fwYXjCFtcEpHbNJ0lyAFsXTsjBbfaDjzALeQsN6M" crossorigin="anonymous">
</head>
<body class="bg-dark">
<section id="booking-form">
<div class="container d-flex justify-content-center">
<section class="booking">
<div class="card text-center">
<div class="card-body">
<h4 class="card-title text-center">Search Tours</h4>
<h5>Find your dream tour today!</h5>
<form>
<input type="text" id="search" name="search-tour" placeholder="Search Tour">
<label for="search"><i class="fa fa-search" aria-hidden="true"></i></label><br>
<input type="text" id="destination" name="" placeholder="Destination">
<label for="destination"><i class="fa fa-plane" aria-hidden="true"></i></label><br>
<input type="text" id="tour-type" name="Tour-Type" placeholder="Tour Type">
<label for="tour-type"><i class="fa fa-bed" aria-hidden="true"></i></label><br>
<input type="text" id="tour-date" name="" placeholder="Month">
<label for="tour-date"><i class="fa fa-calendar" aria-hidden="true"></i></label>
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
#bookin-form {
margin-top: 100px;
}
.card {
width: 350px;
background-color: #fff;
}
.booking input {
width: 85%;
border: 0;
height: 40px;
margin: 10px;
/*border: 1px solid #000;*/
background-color: #f2f2f2;
/*transition: all .1s;*/
box-shadow: .09px .4px 2px 1px rgba(0,0,0,.3)
}
.booking input:hover {
transform: scale(1.01);
box-shadow: .2px .6px 3px 1px rgba(0,0,0,.3)
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: