-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhotel.html
More file actions
484 lines (484 loc) · 26.7 KB
/
hotel.html
File metadata and controls
484 lines (484 loc) · 26.7 KB
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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
<!DOCTYPE html>
<html lang="en">
<head>
<title>HotelREP</title>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/index.css">
<link rel="icon" href="img/img/image001.png" type="image/icon type">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
</head>
<body id="myBody">
<header>
<nav class="menu-wrapper">
<span class="menu-logo">
<a href="index.html"><img src="img/img/MAIN2.svg" alt="Intellitech Logo"></a>
</span>
<div class="hamburger">
<div class="menu">
<a href="javascript:void(0);" class="icon" onclick="myMenu()">
<img src="img/img/ic_round-menu.svg" alt="Menu">
</a>
</div>
<div id="myLinks" class="menu-overlay">
<div class="menu-close close">
<img src="img/img/ic_close.svg" alt="Close" class="img-close" onclick="myCloseMenu()">
</div>
<button class="menu-btn" onclick="myMenuOpenFunction()">Get a Quote</button>
<div id="myMenuModal" class="modal-overlay">
<div class="modal-container">
<div class="modal-header modal-section1">
<p>Get a Quote</p>
<img src="img/img/cancel.svg" alt="" width="24px" height="24px" class="close-img" onclick="myMenuCloseFunction()">
</div>
<div class="modal-body">
<form action="" method="post">
<input type="text" name="Full Name" id="name" placeholder="Full Name" maxlength="30" required>
<input type="tel" name="" id="tel" placeholder="Phone Number" maxlength="30" required>
<input type="email" name="" id="email" placeholder="Email Address" maxlength="40" required>
<div class="custom-select">
<!-- <span><img src="img/img/down.png" alt="" id="select-img-down"></span> -->
<select name="service" id="select">
<option value="0">Choose a service</option>
<option value="1">Software Development</option>
<option value="2">IT Support</option>
<option value="3">Consultancy</option>
<option value="4">Network Design</option>
</select>
</div>
<textarea name="message" id="message" placeholder="Tell us about your business..." maxlength="1200" required></textarea>
<input type="submit" value="Get a Quote" id="submit">
</form>
</div>
</div>
</div>
<div class="mylinks" >
<div class="mylink"><a href="index.html">Home</a></div>
<div class="mylink"><span class="menu-inline">
<a href="services.html">Services</a>
<img src="img/img/ic_round-keyboard-arrow-down.svg" alt="Arrow" id="img-arrow-down" onclick="myService()">
</span></div>
<div id="menu-service-onclick" class="menu-service-nav">
<div class="menu-service">
<span class="menu-service1">
<img src="img/img/MaskGroup.png" alt="IT Support">
<a href="itsupport.html">
<h1>IT Support</h1>
<p>Software and Hardware Support</p>
</a>
</span>
<span class="menu-service1">
<img src="img/img/MaskGroup2.png" alt="Software Development">
<a href="softdev.html">
<h1>Software Development</h1>
<p>Web, Mobile, and Desktop</p>
</a>
</span>
<span class="menu-service1">
<img src="img/img/MaskGroup3.png" alt="Networking">
<a href="network.html">
<h1>Networking</h1>
<p>Networking and Security Design</p>
</a>
</span>
<span class="menu-service1">
<img src="img/img/MaskGroup4.png" alt="Consultancy">
<a href="consultancy.html">
<h1>Consultancy</h1>
<p>Support, Management, and Procurement</p>
</a>
</span>
</div>
</div>
<div class="mylink"><a href="products.html">Products</a></div>
<div class="mylink"><span class="menu-inline">
<a href="contact.html">Company</a>
<img src="img/img/ic_round-keyboard-arrow-down.svg" alt="Arrow" id="img-arrow-down-con" onclick="myCompany()">
</span></div>
<div id="menu-company-onclick" class="menu-service-nav">
<div class="menu-service">
<span class="menu-service1">
<img src="img/img/MaskGroup5.png" alt="Blog">
<a href="blog.html">
<h1>Blog</h1>
<p>Our ideas and experiences</p>
</a>
</span>
<span class="menu-service1">
<img src="img/img/MaskGroup6.png" alt="About Us">
<a href="about.html">
<h1>About Us</h1>
<p>Be inspired about our uniqueness</p>
</a>
</span>
<span class="menu-service1">
<img src="img/img/MaskGroup7.png" alt="Career">
<a href="career.html">
<h1>Career</h1>
<p>Enhance your knowledge with us</p>
</a>
</span>
<span class="menu-service1">
<img src="img/img/MaskGroup8.png" alt="Contact Us">
<a href="contact.html">
<h1>Contact Us</h1>
<p>Get in touch with us</p>
</a>
</span>
</div>
</div>
</div>
</div>
</div>
</nav>
<nav class="wrapper">
<span class="logo">
<a href="index.html"><img src="img/img/MAIN2.svg" width="229px" height="60px" alt="Intellitech Logo"></a>
</span>
<ul class="nav-items">
<li><a href="index.html" class="nav-hover">Home</a></li>
<li class="divservices"><a href="services.html" class="nav-hover">Services</a>
<div>
<div class="service-nav">
<a href="itsupport.html" class="service-nav1 servicenav2">
<img src="img/img/MaskGroup.png" alt="IT Support" width="47px" height="47px">
<span>
<h1>IT Support</h1>
<p>Software and Hardware Support</p>
</span>
</a>
<span class="service-border"></span>
<a href="softdev.html" class="service-nav1 servicenav3">
<img src="img/img/MaskGroup2.png" alt="Software Development" width="47px" height="47px">
<span>
<h1>Software Development</h1>
<p>Web, Mobile, and Desktop</p>
</span>
</a>
<span class="service-border"></span>
<a href="network.html" class="service-nav1 servicenav4">
<img src="img/img/MaskGroup3.png" alt="Networking" width="43px" height="43px">
<span>
<h1>Networking</h1>
<p>Networking and Security Design</p>
</span>
</a>
<span class="service-border"></span>
<a href="consultancy.html" class="service-nav1 servicenav5">
<img src="img/img/MaskGroup4.png" alt="Consultancy" width="47px" height="47px">
<span>
<h1>Consultancy</h1>
<p>Support, Management, and Procurement</p>
</span>
</a>
</div>
</div>
</li>
<li><div>
<a href="products.html" class="nav-products nav-hover">Products</a>
<span class="nav-border"></span>
</div></li>
<li><a onclick="myFunction()" class="nav-hover">Company</a>
<div id="companynav">
<div class="company-nav">
<a href="blog.html" class="company-nav1 companynav2">
<img src="img/img/MaskGroup5.png" alt="Blog" width="48px" height="47px">
<span>
<h1>Blog</h1>
<p>Our ideas and experience</p>
</span>
</a>
<span class="service-border"></span>
<a href="about.html" class="company-nav1 companynav3">
<img src="img/img/MaskGroup6.png" alt="About Us" width="48px" height="47px">
<span>
<h1>About Us</h1>
<p>Be inspired about our uniqueness</p>
</span>
</a>
<span class="service-border"></span>
<a href="career.html" class="company-nav1 companynav4">
<img src="img/img/MaskGroup7.png" alt="Career" width="48px" height="47px">
<span>
<h1>Career</h1>
<p>Enhance your knowledge with us</p>
</span>
</a>
<span class="service-border"></span>
<a href="contact.html" class="company-nav1 companynav5">
<img src="img/img/MaskGroup8.png" alt="" width="48px" height="47px">
<span>
<h1>Contact Us</h1>
<p>Get in touch with us</p>
</span>
</a>
</div>
</div>
</li>
</ul>
<button class="nav-btn" onclick="myOpenFunction()">Get a Quote</button>
<div id="myModal" class="modal-overlay">
<div class="modal-container">
<div class="modal-header modal-section1">
<p>Get a Quote</p>
<img src="img/img/cancel.svg" alt="" width="24px" height="24px" class="close-img" onclick="myCloseFunction()">
</div>
<div class="modal-body">
<form action="" method="post">
<input type="text" name="Full Name" id="name" placeholder="Full Name" maxlength="30" required>
<span class="modal-form1">
<input type="tel" name="" id="tel" placeholder="Phone Number" maxlength="30" required>
<input type="email" name="" id="email" placeholder="Email Address" maxlength="40" required>
</span>
<div class="custom-select">
<span><img src="img/img/down.png" alt="" id="select-img-down"></span>
<select name="service" id="select">
<option value="0">Choose a service</option>
<option value="1">Software Development</option>
<option value="2">IT Support</option>
<option value="3">Consultancy</option>
<option value="4">Network Design</option>
</select>
</div>
<textarea name="message" id="message" placeholder="Tell us about your business..." maxlength="1200" required></textarea>
<input type="submit" value="Get a Quote" id="submit">
</form>
</div>
</div>
</div>
</nav>
</header>
<main>
<section class="main-hol-con-img">
<h1>HotelREP</h1>
<p>Our cutting-edge hotel management system, HotelREP, integrates ERP and is designed to handle the demands of managing a contemporary hotel, restaurant, and bar. It is easy to use and manages all aspects of hotel operations successfully. </p>
</section>
<section class="main-section1 main-hol-con1">
<div class="main-hol-con1a">
<img src="img/img/features.png" alt="Features Description">
<h1>FEATURES DESCRIPTION</h1>
<ul>
<li>Point of Sale (POS)</li>
<li>Room Reservation</li>
<li>Hall Reservations</li>
<li>Restaurant Billing</li>
<li>Room Services</li>
<li>Payroll System Logs, Multiple Hotel</li>
<li>Inventory Management Accounting</li>
<li>GYM Membership</li>
<li>Guest Check in & Check Out</li>
<li>User Friendly Screens</li>
<li>Garden Reservations</li>
<li>KOT System</li>
<li>Laundry Billing</li>
<li>Plan Support and Multi-rates for Room</li>
<li>SMS and Email Module and User Support</li>
</ul>
</div>
<div class="main-hol-con1a">
<img src="img/img/entries.png" alt="Master Entries">
<h1>MASTER ENTRIES</h1>
<ul>
<li>Hotel Master</li>
<li>Hotel Plan Master</li>
<li>Currency Master</li>
<li>ID Type</li>
<li>Guest Entry</li>
<li>Room Type</li>
<li>Room Master</li>
<li>Extra Bed</li>
<li>Extra Person</li>
<li>Banquet Hall Master</li>
<li>Garden Master</li>
<li>Food Category</li>
<li>Liquor Category</li>
<li>Liquor Master</li>
<li>Expense Master</li>
<li>Expense Type Tax Master</li>
</ul>
</div>
</section>
<section class="main-section1 main-hol-con2">
<div class="main-hol-con1a">
<img src="img/img/utilities.png" alt="Utilities">
<h1>UTILITIES</h1>
<ul>
<li>User Rights Management</li>
<li>Change Password</li>
<li>Email Setting</li>
<li>Users Registrations</li>
<li>Logs</li>
<li>User Contacts</li>
<li>SQL Server Setting</li>
<li>Database Backup/Restore</li>
</ul>
</div>
<div class="main-hol-con1a">
<img src="img/img/academic.png" alt="Accountings">
<h1>ACCOUNTINGS</h1>
<ul>
<li>Room Services</li>
<li>Bank Master</li>
<li>Trial Balance</li>
<li>Check In/ Check Out</li>
<li>Banquet Hall Reservations</li>
<li>Attendance</li>
<li>Stock Entry</li>
<li>Bank Account Registrations</li>
<li>Payroll Advance</li>
<li>Purchase Inventory</li>
<li>General Daybook</li>
<li>Supplier ledger</li>
<li>Transactions</li>
<li>Guest Ledger</li>
<li>Vouchers</li>
<li>General Ledger</li>
</ul>
</div>
</section>
<section class="main-hol-con3">
<button onclick="myOpenFunction()">Get a Quote</button>
</section>
<div class="main-sal-con2-mob">
<button onclick="myMenuMobOpenFunction()">Get a Quote</button>
<div id="myMenuMobModal" class="modal-overlay">
<div class="modal-container">
<div class="modal-header modal-section1">
<p>Get a Quote</p>
<img src="img/img/cancel.svg" alt="" width="24px" height="24px" class="close-img" onclick="myMenuMobCloseFunction()">
</div>
<div class="modal-body">
<form action="" method="post">
<input type="text" name="Full Name" id="name" placeholder="Full Name" maxlength="30" required>
<input type="tel" name="" id="tel" placeholder="Phone Number" maxlength="30" required>
<input type="email" name="" id="email" placeholder="Email Address" maxlength="40" required>
<div class="custom-select">
<!-- <span><img src="img/img/down.png" alt="" id="select-img-down"></span> -->
<select name="service" id="select">
<option value="0">Choose a service</option>
<option value="1">Software Development</option>
<option value="2">IT Support</option>
<option value="3">Consultancy</option>
<option value="4">Network Design</option>
</select>
</div>
<textarea name="message" id="message" placeholder="Tell us about your business..." maxlength="1200" required></textarea>
<input type="submit" value="Get a Quote" id="submit">
</form>
</div>
</div>
</div>
</div>
</main>
<footer class="footer-container">
<section class="main-section1 footer-section-div">
<div class="footer-section-div1 footer-sec1">
<div class="footer-section-div1a">
<img src="img/img/MAIN2.svg" alt="Intellitech Logo">
<p>It is not just our objective to satisfy or delight our consumers; it is also our intention to amaze them.</p>
</div>
<div class="main-section1 menu-section7-div footer-section-div1b">
<a href=""><img src="img/img/facebook.svg" alt="Facebook"></a>
<a href=""><img src="img/img/instagram.svg" alt="Instagram"></a>
<a href=""><img src="img/img/twitter.svg" alt="Twitter"></a>
<a href=""><img src="img/img/linkedin.svg" alt="LinkedIn"></a>
</div>
</div>
<div class="footer-section-div2 footer-desktop">
<a href="contact.html"><h1>Company</h1></a>
<a href="blog.html"><p>Blog</p></a>
<a href="career.html"><span class="footer-section-div2a">
<p>Careers</p>
<button>Hiring!</button>
</span></a>
<a href="about.html"><p>About</p></a>
</div>
<div class="footer-section-div2 footer-desktop">
<a href="services.html"><h1>Services</h1></a>
<a href="itsupport.html"><p>IT Support</p></a>
<a href="consultancy.html"><p>Consultancy</p></a>
<a href="network.html"><p>Network Design</p></a>
</div>
<div class="footer-mobile">
<div class="menu-section7-div footer-mobile-sec">
<div class="footer-section-div2">
<a href="contact.html"><h1>Company</h1></a>
<a href="blog.html"><p>Blog</p></a>
<a href="career.html"><span class="footer-section-div2a">
<p>Careers</p>
<button>Hiring!</button>
</span></a>
<a href="about.html"><p>About</p></a>
</div>
<div class="footer-section-div2">
<a href="services.html"><h1>Services</h1></a>
<a href="itsupport.html"><p>IT Support</p></a>
<a href="consultancy.html"><p>Consultancy</p></a>
<a href="network.html"><p>Network Design</p></a>
</div>
</div>
</div>
<div class="footer-section-div2 footer-sec1">
<a href="products.html"><h1>Products</h1></a>
<a href="hotel.html"><p>HotelREP</p></a>
<a href="biro.html"><p>BiRO</p></a>
<a href="sales.html"><p>SalesREP</p></a>
</div>
<div class="footer-tablet">
<div class="menu-section7-div footer-tab1">
<div class="footer-section-div1 footer-tab1a">
<div class="footer-section-div1a">
<img src="img/img/MAIN2.svg" alt="Intellitech Logo">
<p>It is not just our objective to satisfy or delight our consumers; it is also our intention to amaze them.</p>
</div>
<div class="main-section1 menu-section7-div footer-section-div1b">
<a href=""><img src="img/img/facebook.png" alt="Facebook"></a>
<a href=""><img src="img/img/instagram.png" alt="Instagram"></a>
<a href=""><img src="img/img/twitter.png" alt="Twitter"></a>
<a href=""><img src="img/img/linkedin.png" alt="LinkedIn"></a>
</div>
</div>
<div class="footer-section-div2 footer-tab1b">
<a href="contact.html"><h1>Company</h1></a>
<a href="blog.html"><p>Blog</p></a>
<a href="career.html"><span class="footer-section-div2a">
<p>Careers</p>
<button>Hiring!</button>
</span></a>
<a href="about.html"><p>About</p></a>
</div>
</div>
</div>
<div class="footer-tablet">
<div class="menu-section7-div footer-tab2">
<div class="footer-section-div2 footer-tab2a">
<a href="services.html"><h1>Services</h1></a>
<a href="itsupport.html"><p>IT Support</p></a>
<a href="consultancy.html"><p>Consultancy</p></a>
<a href="network.html"><p>Network Design</p></a>
</div>
<div class="footer-section-div2 footer-tab2b">
<a href="products.html"><h1>Products</h1></a>
<a href="hotel.html"><p>HotelREP</p></a>
<a href="biro.html"><p>BiRO</p></a>
<a href="sales.html"><p>SalesREP</p></a>
</div>
</div>
</div>
</section>
<div class="footer-section-div3">
<p>Copyright © 2022. All Rights Reserved.</p>
</div>
</footer>
<script type = "text/javascript" src="js/service.js"></script>
<script type = "text/javascript" src="js/menu.js"></script>
<script type = "text/javascript" src="js/navscroll.js"></script>
<script type = "text/javascript" src="js/select.js"></script>
<script type = "text/javascript" src="js/index.js"></script>
</body>
</html>