-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbooking1.html
150 lines (136 loc) · 6.92 KB
/
booking1.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
139
140
141
142
143
144
145
146
147
148
149
150
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="booking1.css">
</head>
<body>
<div class="backg" style="background-image: url(/public/mountains-190055_1280.jpg);background-position: center;background-size: cover; width:110%;
height:110vh;top:0px;left:0px;filter:blur(1px);position: fixed;z-index: -1;"></div>
<!-- hidden popup -->
<div class="clash-card barbarian" id="popupbox">
<div class="clash-card__image clash-card__image--barbarian" style="z-index:0">
<img src="/public/—Pngtree—airplane travel tourism supplies_6374202.png" style="margin-top:-50px;"
alt="flight" />
</div>
<div style="background-color: white; z-index:4;">
<div class="clash-card__level clash-card__level--barbarian" style="color:black">Booking Confirmed for
</div>
<div class="clash-card__unit-name" id="sname">Sourav Burman</div>
<div class="clash-card__unit-description" style="color:black">
From : <span style="font-weight:bolder" id="sfrom">New Delhi</span> to <span
style="font-weight : bolder; font-size:25px" id="sto">Mumbai</span><br>
<br>
Date of Departure : <span id="sdate">12-14 </span><br>
<br>
Price - <span style="font-weight : bolder" id="sprice">1234</span>
</div>
</div>
<button id="closeit" style="margin-bottom:10px; padding:5px; border-radius: 15px; border:none; background-color: black;color: white;">close</button>
</div>
<!-- navbar -->
<div class="frontHeader">
<div class="frontNavbar">
<a href="index.html" class="logo"><img style="width: 130px"
src="/public/Pink_Minimal_Typography_Logo___2_-removebg-preview - Copy.png" alt="Travel" /></a>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="destination.html">Discover</a></li>
<li><a href="booking1.html">Bookings</a></li>
<li><a href="aboutUs.html">About Us</a></li>
<li><a href="contact1.html">Support</a></li>
<li>
<div class="profile-icon">👤</div>
</li>
<li>
<div class="search-icon">🔍</div>
</li>
<li>
<a href="/signup/sign-in.html"><button id="signup" class="signup-btn">Sign Up</button></a>
</li>
</ul>
</div>
<!-- next -->
<section class=" slider_section position-relative">
<div class="detail-box">
<div class="row">
<div class="col-md-8 col-lg-6 mx-auto">
<h1>
Book Now <br />
Traveller Code Symphony
</h1>
<p>
Book your package with us and enjoy a seamless travel experience.
</p>
<div>
<a href="#this">
Book now
</a>
</div>
</div>
</div>
</div>
</section>
<!-- popular locarions -->
<h1 style="text-align: center; margin-top:100px;">Popular destination</h1>
<div id="popularDestinations">
</div>
<!-- booking -->
<section class="book_section" id="this">
<div class="container">
<div class="row">
<div class="col">
<div class="heading_container" style="margin-top:250px">
<h2 style="text-align: center;">
Book Your Ticket Now
</h2>
<p style="text-align: center;">
Wanderlust Meets Booking: Your Gateway to Seamless Journeys.
</p>
</div>
<form style="width:70%; margin:auto;">
<div class="form-row " style="display: flex; justify-content: space-around;">
<div class="form-group col-lg-4">
<label for="inputAddress1">Name</label>
<input type="text" class="form-control" id="inputAddress1"
placeholder="Enter your name">
</div>
<div class="form-group col-lg-4">
<label for="inputAddress2">From</label>
<input type="text" class="form-control" id="inputAddress2">
</div>
<div class="form-group col-lg-4">
<label for="inputEmail4">To</label>
<input type="text" class="form-control" id="inputEmail4">
</div>
</div>
<div class="form-row "
style="margin-top:30px; display: flex;justify-content: space-around;">
<div class="form-group col-lg-4">
<label for="inputDate">Date</label>
<input type="date" class="form-control" id="inputDate" placeholder="1234 Main St">
</div>
<div class="form-group col-lg-4">
<label for="inputPrice">Email</label>
<input type="email" class="form-control" id="inputPrice" placeholder="email">
</div>
<div class="form-group col-lg-4">
<label for="inputPhone">Phone</label>
<input type="text" class="form-control" id="inputPhone">
</div>
</div>
<div class="d-flex justify-content-center"
style="margin-top: 30px; display: flex; justify-content: center;">
<button class="btn" id="booknowbutton">Book Now</button>
</div>
</form>
</div>
</div>
</div>
</section>
</div>
<script src="booking1.js"></script>
</body>
</html>