forked from PoojaMittal2842/Delhi-Tourism
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBook_pass.html
138 lines (123 loc) · 5.86 KB
/
Book_pass.html
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!doctype html>
<html lang="en">
<head>
<title>Book Pass</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.0/css/all.min.css">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/5.0.0-alpha1/css/bootstrap.min.css" integrity="sha384-r4NyP46KrjDleawBgD5tp8Y7UzmLA05oM1iAEQ17CSuDqnUK2+k9luXQOfXJCJ4I" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="Assets/css/Book_pass.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.4.1/css/all.css">
<link rel="icon" type="image/png" sizes="32x32" href="./Assets/images/delhi-tourism.png">
<style type="text/css">
</style>
</head>
<!-- Body -->
<body>
<nav class="nav">
<a href="./home.html" id="nav_img"><img src="./Assets/images/delhi-tourism.png" alt="" height="80px" width="110px"></a>
<a href="./home.html"><i class="fa fa-home" aria-hidden="true"></i> Home</a>
<a href="/about.html" target="_blank"><i class="fa fa-user" aria-hidden="true"></i> About us</a>
<a href="./Book_pass.html" target="_blank"><i class="fas fa-hotel"></i> Book Pass</a>
<a href="#" target="_blank"><i class="fas fa-place-of-worship"></i></i> Places To Visit</a>
<a href="#" target="_blank"><i class="fa fa-plug" aria-hidden="true"></i> Contact us</a>
<a href="./registration.html" target="_blank" id="register">Sign in <i class="fas fa-sign-in-alt" ></i></a>
</nav>
<header class="main_header">
<div class="d-flex justify-content-center align-items-center flex-column py-5 top_head">
<h1 class="text-uppercase main_heading">Delhi Tourism </h1>
</div>
<!-- //the main image -->
<div class="main_header__div d-flex align-items-start
justify-content-center flex-column shadow pl-5">
<h2 class="animateWord">
<span>Explore</span>
<div>
<ul class="flip4">
<li>Fairs and Festivals</li>
<li>Monuments</li>
<li>Foods </li>
<li>Rich Traditions </li>
<li>Music </li>
</ul>
</div>
</h2>
<button class="text-uppercase" onClick="document.getElementById('bottom').scrollIntoView();">Book pass</button>
</div>
</header>
<!-- BOOKPASS FORM -->
<div class="wrapper">
<div class="title">
Book Pass Now
</div>
<form action="" name="form1" onsubmit="validate()">
<div class="form" id="bottom">
<div class="inputfield">
<label>First Name</label>
<input type="text" class="input" name="FirstName" required>
</div>
<div class="inputfield">
<label>Last Name</label>
<input type="text" class="input" name="LastName"required>
</div>
<div class="inputfield">
<label>Email Address</label>
<input type="text" name="email" class="input" required>
</div>
<div class="inputfield">
<label>No of passes(Adult)</label>
<div class="custom_select">
<select required>
<option value="">Select</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="2">3</option>
<option value="2">4</option>
<option value="2">5</option>
</select>
</div>
</div>
<div class="inputfield">
<label>Time slot</label>
<div class="custom_select">
<select required>
<option value="">Select</option>
<option value="forenoon">9am to 12pm</option>
<option value="afternoon">12pm to 3pm</option>
<option value="evening">3pm to 6pm</option>
<option value="night">6pm to 9pm</option>
</select>
</div>
</div>
<div class="inputfield">
<label>Date</label>
<input type="Date" class="input" name="date" required>
</div>
<div class="inputfield">
<label>No of passes(Children)</label>
<div class="custom_select">
<select required>
<option value="">Select</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="2">3</option>
<option value="2">4</option>
<option value="2">5</option>
</select>
</div>
</div>
<div class="inputfield">
<label>Phone Number</label>
<input type="tel" class="input" name="mobile" required>
</div>
<div class="inputfield">
<input type="submit" value="Book Now" class="btn" onclick="validate()">
</div>
</form>
</div>
</div>
<script type="text/javascript" src="Assets/js/Book_pass.js">
</script>
</body>
</html>