-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbook.html
228 lines (138 loc) · 5.38 KB
/
book.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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Smart Dorm</title>
<link clasas = 'logo' rel="iicon" href="img/LOGO.png"/>
<!-- SWIPER BUNDLE MODERN MOBILE TOUCH SLIDER AND FRAMEWORK -->
<link rel="stylesheet" href="https://unpkg.com/swiper@7/swiper-bundle.min.css"/>
<!-- AWESOME FONT CDN LINK -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<!-- CUSTOME CSS FILE LINK -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- HEADER SECTION STARTS -->
<header>
<div id="menu-bar" class="fas fa-bars"></div>
<a href="index.html" class="logo"><span>SMART</span>Dorm</a>
<nav class="navbar">
<a href="index.html">Home</a>
<a href="discover.html">Room's Deals</a>
<a href="service.html">services</a>
<a href="gallery.html">gallery</a>
<a href="review.html">review</a>
<a href="contact.html">contact</a>
<a href="book.html">book</a>
<a href="RNPL.html" class="logo1"><span>*</span>Rent Now Pay Later</a>
</nav>
<div class="icons">
<i class="fas fa-search" id="search-btn"></i>
<i class="fas fa-user" id="login-btn"></i>
</div>
<form action="" class="search-bar-container">
<input type="search" id="search-bar" placeholder="search here...">
<label for="search-bar" class="fas fa-search"></label>
</form>
</header>
<!-- HEADER SECTION ENDS -->
<!-- LOGIN FORM STARTS -->
<div class="login-form-container">
<i class="fas fa-times" id="form-close"></i>
<form action="">
<h3>login</h3>
<input type="email" class="box" placeholder="Enter your email">
<input type="password" class="box" placeholder="Enter your password">
<input type="submit" value="login now" class="btn">
<input type="checkbox" id="remember">
<label for="remember">Remember me</label>
<p>forgrt password? <a href="#">click here</a></p>
<p>don't have and account? <a href="#">register now</a></p>
</form>
</div>
<br>
<br>
<br>
<br>
<br>
<!-- LOGIN FORM ENDS -->
<!-- BOOK SECTION STARTS -->
<section class="book" id="book">
<h1 class="heading">
<span>b</span>
<span>o</span>
<span>o</span>
<span>k</span>
<span class="space"></span>
<span>n</span>
<span>o</span>
<span>w</span>
</h1>
<div class="row">
<div class="img">
<img src="img/20.jpg" alt="">
</div>
<form action="">
<div class="inputBox">
<h3>where to</h3>
<input type="text" placeholder="Place name">
</div>
<div class="inputBox">
<h3>how many</h3>
<input type="number" placeholder="Number of students">
</div>
<div class="inputBox">
<h3>Location</h3>
<input type="text" placeholder="preferred location">>
</div>
<input type="submit" class="btn" value="book now">
</form>
</div>
</section>
<!-- BOOK SECTION STARTS -->
<!-- FOOTER SECTION STARTS -->
<section class="footer">
<div class="box-container">
<div class="box">
<h3>about us</h3>
<p>Smart dorm is a new venture in the hospitality industry with focus on hostel, pg and mess. It uses all the existing technologies for absolute efficiency of the work like video call, rent now pay later ane many more yet to be launched.<br><br>
The founders are ANIKET SINHA and HREETAM PAUL.</p>
</div>
<div class="box">
<h3>branch locations</h3>
<a href="#">Kolkata</a>
<a href="#">Delhi</a>
<a href="#">Hydrabad</a>
<a href="#">Jaipur</a>
<a href="#">Chennai</a>
</div>
<div class="box">
<h3>quick links</h3>
<a href="index.html">home</a>
<a href="discover.html">Room's Deals</a>
<a href="service.html">service</a>
<a href="gallery.html">gallery</a>
<a href="review.html">review</a>
<a href="contact.html">contact</a>
<a href="book.html">book</a>
<a href="RNPL.html">Rent Now Pay Later</a>
</div>
<div class="box">
<h3>follow us</h3>
<a href="#">facebook</a>
<a href="#">instagram</a>
<a href="#">twitter</a>
<a href="#">likedin</a>
</div>
</div>
<h1 class="credit"> created by <span>Aniket Sinha</span> | All rights reserved! </h1>
</section>
<!-- FOOTER SECTION ENDS -->
<!-- SWIPER BUNDLE MODERN MOBILE TOUCH SLIDER AND FRAMEWORK CSS FILE LINK-->
<script src="https://unpkg.com/swiper@7/swiper-bundle.min.js"></script>
<!-- CUSTOME JS FILE LINK -->
<script src="main.js"></script>
</body>
</html>