-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1053 lines (906 loc) · 48.2 KB
/
index.html
File metadata and controls
1053 lines (906 loc) · 48.2 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
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>Queen's Town</title>
<meta content="" name="description">
<meta content="" name="keywords">
<!-- Favicons -->
<link href="assets/img/log.png" rel="icon">
<link href="assets/img/log.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i" rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/icofont/icofont.min.css" rel="stylesheet">
<link href="assets/vendor/remixicon/remixicon.css" rel="stylesheet">
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="assets/vendor/owl.carousel/assets/owl.carousel.min.css" rel="stylesheet">
<link href="assets/vendor/venobox/venobox.css" rel="stylesheet">
<link href="assets/vendor/aos/aos.css" rel="stylesheet">
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet">
</head>
<body>
<!-- ======= Hero Section ======= -->
<section id="heros">
<div class="heros-container">
<a class="hero-logo" data-aos="zoom-in"><img src="assets/img/log.png" alt=""></a>
<br> <h1 data-aos="zoom-in">Welcome To Queen's Town </h1>
<h2 data-aos="fade-up"><b>DISCOVER A LUXURIOUS LIVING</b></h2>
<a data-aos="fade-up" href="#hero" class=" scrollto"><svg width="2em" height="2em" viewBox="0 0 16 16" class="bi bi-chevron-double-down" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" d="M1.646 6.646a.5.5 0 0 1 .708 0L8 12.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/>
<path fill-rule="evenodd" d="M1.646 2.646a.5.5 0 0 1 .708 0L8 8.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/>
</svg></a>
</div>
</section><!-- End Hero -->
<!-- ======= Header ======= -->
<header id="header" class="fixed-top d-flex align-items-center">
<div class="container d-flex align-items-center">
<div class="logo mr-auto">
<a href="index.html"><img src="assets/img/Optimized-png.png" alt="" class="img-fluid"></a>
<!-- <h1 class="text-light"><a href="index.html"><span>Vesperr</span></a></h1> -->
</div>
<nav class="nav-menu d-none d-lg-block">
<ul>
<li class="active"><a href="#index.html">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#why-us">Why US</a></li>
<li><a href="#features">Features</a></li>
<li><a href="#testimonials">Testimonials</a></li>
<li class="drop-down"><a href="">More</a>
<ul>
<li><a href="#faq">FAQs ?</a></li>
<li><a href="#portfolio">Gallery</a></li>
<li><a href="#team">Our Team</a></li>
</ul>
</li>
<li><a href="#more-services">Blogs</a></li>
<li class="get-started"><a href="#contact">Contact Now</a></li>
</ul>
</nav><!-- .nav-menu -->
</div>
</header><!-- End Header -->
<!-- ======= Hero Section ======= -->
<section id="hero" class="d-flex align-items-center">
<div class="container">
<div class="row">
<div class="col-lg-6 pt-5 pt-lg-0 order-2 order-lg-1 d-flex flex-column justify-content-center">
<h1 data-aos="fade-up">Queen's Town offers Comfortable, Luxurious, and high benchmarked serviced accommodations to women from all over the country.</h1>
<div data-aos="fade-up" data-aos-delay="800">
<a href="#about" class="btn-get-started scrollto">Get Started</a>
</div>
</div>
<div class="col-lg-6 order-1 order-lg-2 hero-img" data-aos="fade-left" data-aos-delay="200">
<img src="assets/img/11.png" class="img-fluid animated" alt="">
</div>
</div>
</div>
</section><!-- End Hero -->
<main id="main">
<!-- ======= Clients Section ======= -->
<section id="clients" class="clients clients">
<div class="container">
<div class="row">
<div class="col-lg-2 col-md-4 col-6">
<img src="assets/img/clients/client-1.png" class="img-fluid" alt="" data-aos="zoom-in">
</div>
<div class="col-lg-2 col-md-4 col-6">
<img src="assets/img/clients/client-2.png" class="img-fluid" alt="" data-aos="zoom-in" data-aos-delay="100">
</div>
<div class="col-lg-2 col-md-4 col-6">
<img src="assets/img/clients/client-3.png" class="img-fluid" alt="" data-aos="zoom-in" data-aos-delay="200">
</div>
<div class="col-lg-2 col-md-4 col-6">
<img src="assets/img/clients/client-4.png" class="img-fluid" alt="" data-aos="zoom-in" data-aos-delay="300">
</div>
<div class="col-lg-2 col-md-4 col-6">
<img src="assets/img/clients/client-5.png" class="img-fluid" alt="" data-aos="zoom-in" data-aos-delay="400">
</div>
<div class="col-lg-2 col-md-4 col-6">
<img src="assets/img/clients/client-6.png" class="img-fluid" alt="" data-aos="zoom-in" data-aos-delay="500">
</div>
</div>
</div>
</section><!-- End Clients Section -->
<!-- ======= About Us Section ======= -->
<section id="about" class="about">
<div class="container">
<div class="section-title" data-aos="fade-up">
<h2>About Us</h2>
</div>
<div class="row content">
<div class="col-lg-6" data-aos="fade-up" data-aos-delay="150">
<p>
If you are looking for an independent hostel in Indore which is not less than home then you are in luck!
</p>
<ul>
<li><i class="ri-check-double-line"></i>Spending on furniture, utilities and groceries that you rarely use? Say Hii to Queen’s Town with one stop for all your needs.</li>
<li><i class="ri-check-double-line"></i>Simplifying student accommodation. Your house-keeping, safety, daily meals, medical-assistance and everything in between.</li>
<li><i class="ri-check-double-line"></i>With endless opportunities to meet new minded individuals, have interesting conversations, and share fun anecdotes.</li>
</ul>
</div>
<div class="col-lg-6 pt-4 pt-lg-0" data-aos="fade-up" data-aos-delay="300">
<p>
The Queen's Town Property is built with a benchmark serviced room. Come and stay with us as we welcome the freedom to function again. Packed with premium facilities at reasonable prices, it’s about time you move-in and experience hassle-free living. So don’t wait up, book a room and become a Queen of Queen’s Town today.
</p>
<a href="aboutus.html" class="btn-learn-more">Learn More</a>
</div>
</div>
</div>
</section><!-- End About Us Section -->
<!-- ======= Counts Section ======= -->
<section id="counts" class="counts">
<div class="container">
<div class="row">
<div class="image col-xl-5 d-flex align-items-stretch justify-content-center justify-content-xl-start" data-aos="fade-right" data-aos-delay="150">
<img src="assets/img/9.png" alt="" class="img-fluid">
</div>
<div class="col-xl-7 d-flex align-items-stretch pt-4 pt-xl-0" data-aos="fade-left" data-aos-delay="300">
<div class="content d-flex flex-column justify-content-center">
<div class="row">
<div class="col-md-6 d-md-flex align-items-md-stretch">
<div class="count-box">
<i class="icofont-simple-smile"></i>
<span data-toggle="counter-up">165</span>
<p><strong>Happy Women</strong> chooses Queen's Town for their stay and still counting.</p>
</div>
</div>
<div class="col-md-6 d-md-flex align-items-md-stretch">
<div class="count-box">
<i class="icofont-document-folder"></i>
<span data-toggle="counter-up">105120 </span>
<p><strong>Hours</strong> Services & support has been provided by Queen's Town.</p>
</div>
</div>
<div class="col-md-6 d-md-flex align-items-md-stretch">
<div class="count-box">
<i class="icofont-clock-time"></i>
<span data-toggle="counter-up">04</span>
<p><strong>Years of experience</strong> will help us to Get closer than ever to our clients.</p>
</div>
</div>
<div class="col-md-6 d-md-flex align-items-md-stretch">
<div class="count-box">
<i class="icofont-award"></i>
<span data-toggle="counter-up">7</span>
<p><strong>Awards</strong> is given to Queen's Town to appreciate us for what we do.</p>
</div>
</div>
</div>
</div><!-- End .content-->
</div>
</div>
</div>
</section><!-- End Counts Section -->
<!-- ======= Services Section ======= -->
<section id="services" class="services">
<div class="container">
<div class="section-title" data-aos="fade-up">
<h2>Services</h2>
<p>WHAT TO EXPECT AT QUEEN'S TOWN HOSTELS.</p>
</div>
<div class="row">
<div class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0">
<div class="icon-box" data-aos="fade-up" data-aos-delay="200">
<div class="icon"><i class="bx bx-cube-alt"></i></div>
<h4 class="title"><a href="">AFFORDABLE LUXURY</a></h4>
<p class="description">Where there is QUEEN’S TOWN, there are privileges. We offer pocket-friendly co-living spaces bundled with ultra-modern amenities for a lavish & comfortable lifestyle.</p>
</div>
</div>
<div class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0">
<div class="icon-box" data-aos="fade-up" data-aos-delay="300">
<div class="icon"><i class="bx bx-tachometer"></i></div>
<h4 class="title"><a href="">QUEEN'S TOWN ZONES</a></h4>
<p class="description">Just living is not enough - you need a little relaxation, some fun and lots of privileges to experience the thrill for all our homesteaders.</p>
</div>
</div>
<div class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0">
<div class="icon-box" data-aos="fade-up" data-aos-delay="400">
<div class="icon"><i class="bx bx-shield"></i></div>
<h4 class="title"><a href="">MANNED SECURITY</a></h4>
<p class="description">All the pre-requisites to keep homesteaders safe and have been taken care of. This includes security guards and CCTV surveillance as well.</p>
</div>
</div>
<div class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0">
<div class="icon-box" data-aos="fade-up" data-aos-delay="100">
<div class="icon"><i class="bx bxl-dribbble"></i></div>
<h4 class="title"><a href="">EXPERTISE</a></h4>
<p class="description">Queen’s Town strives for excellence and keep setting improved standards to best serve the girls.</p>
</div>
</div>
</div>
</div>
</section><!-- End Services Section -->
<!-- ======= Why Us Section ======= -->
<section id="why-us" class="why-us">
<div class="container-fluid">
<div class="row">
<div class="col-lg-7 order-2 order-lg-1 d-flex flex-column justify-content-center align-items-stretch">
<div class="content" data-aos="fade-up">
<h3>WHY YOU SHOULD CHOOSE QUEEN'S TOWN ?<br> <strong>At Queen's Town, we assure every women a comfortable, healthy and pleasant stay !</strong></h3>
<p>
Queen's Town Offers you an extraordinary
stay experience </p>
</div>
<div class="accordion-list">
<ul>
<li data-aos="fade-up" data-aos-delay="100">
<a data-toggle="collapse" class="collapsed" href="#accordion-list-1"><span>01</span> Living in a
Social
Community <i class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a>
<div id="accordion-list-1" class="collapse" data-parent=".accordion-list">
<p>
Queen's Town is a luxury accommodation for students, visiting professionals, travelling musicians or anyone sick of booking an hostel. We believe in creating a community that hosts people from all walks of life with vivid interests, creative minds, extraordinary lifestyle who bring along their amazing aura to add to the enrichment of the place. Every girl is welcomed here for fun, laughter and a lovely stay.
</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="200">
<a data-toggle="collapse" href="#accordion-list-2" class="collapsed"><span>02</span> For a Luxury
Hostel
Experience <i class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a>
<div id="accordion-list-2" class="collapse" data-parent=".accordion-list">
<p>
We set out to design a hostel that gives you the privacy of a home with the amenities and support of an upscale hotel. Experience the shades of happiness by living in our luxurious homestel equipped with hygienic rooms, manned security and interesting QT zones. Stay for a short term or a long term, we offer you a living experience at a whole new level of comfort, quality and affordability. </p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="300">
<a data-toggle="collapse" href="#accordion-list-3" class="collapsed"><span>03</span> A Heaven of
Creativity <i class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a>
<div id="accordion-list-3" class="collapse" data-parent=".accordion-list">
<p>
To keep your boredom at bay and your spirits high while you stay with us, we have thoughtfully created spaces in our every QT zone. These spaces will engage you in activities that will fulfill all your artistic passions, sporty endeavors, fitness recalls or simply your relaxation fantasies. We will be conducting workshops or sessions that will bring your creative imagination to live. Just show up and start living an exciting life! </p>
</div>
</li>
</ul>
</div>
</div>
<div class="col-lg-5 order-1 order-lg-2 align-items-stretch video-box" style='background-image: url("assets/img/ERRR.jpg");' data-aos="zoom-in">
<a href="https://www.youtube.com/watch?v=Nypr0oYW41w&feature=youtu.be" class="venobox play-btn mb-4" data-vbtype="video" data-autoplay="true"></a>
</div>
</div>
</div>
</section><!-- End Why Us Section -->
<!-- ======= Features Section ======= -->
<section id="features" class="features">
<div class="container">
<div class="section-title" data-aos="fade-up">
<h2>Features</h2>
<p>WHAT QUEEN'S TOWN PROVIDES YOU FOR YOUR LUXURY STAY</p>
</div>
<div class="row" data-aos="fade-up" data-aos-delay="300">
<div class="col-lg-3 col-md-4">
<div class="icon-box">
<i class="ri-store-line" style="color: #ffbb2c;"></i>
<h3><a>Fully Furnished Accommodations.</a></h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4 mt-md-0">
<div class="icon-box">
<i class="ri-bar-chart-box-line" style="color: #5578ff;"></i>
<h3><a>Self Operating Washing Machine.</a></h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4 mt-md-0">
<div class="icon-box">
<i class="ri-calendar-todo-line" style="color: #e80368;"></i>
<h3><a>Fully Equipped Kitchen & Dining Room.</a></h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4 mt-lg-0">
<div class="icon-box">
<i class="ri-paint-brush-line" style="color: #e361ff;"></i>
<h3><a>We're Providing 2Wheelers For Travel.</a></h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box">
<i class="ri-database-2-line" style="color: #47aeff;"></i>
<h3><a>Free Netflix and Amazon Prime.
</a></h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box">
<i class="ri-gradienter-line" style="color: #ffa76e;"></i>
<h3><a>Medical Services At Doorstep.</a></h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box">
<i class="ri-file-list-3-line" style="color: #11dbcf;"></i>
<h3><a>Regular Cleaning & Hygiene Services.</a></h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box">
<i class="ri-price-tag-2-line" style="color: #4233ff;"></i>
<h3><a>Pick Up & Drop Facility.</a></h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box">
<i class="ri-anchor-line" style="color: #b2904f;"></i>
<h3><a>A Beautiful Garden For Late Night Tea.</a></h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box">
<i class="ri-disc-line" style="color: #b20969;"></i>
<h3><a>Attached Washroom.</a></h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box">
<i class="ri-base-station-line" style="color: #ff5828;"></i>
<h3><a>Free 24*7 Wifi.</a></h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box">
<i class="ri-fingerprint-line" style="color: #29cc61;"></i>
<h3><a>Fully Sanitized & Secured.</a></h3>
</div>
</div>
</div>
</div>
</section><!-- End Features Section -->
<!-- ======= Testimonials Section ======= -->
<section id="testimonials" class="testimonials section-bg">
<div class="container">
<div class="section-title" data-aos="fade-up">
<h2>Testimonials</h2>
<p>Words of queens from Queen's Town</p>
</div>
<div class="owl-carousel testimonials-carousel" data-aos="fade-up" data-aos-delay="200">
<div class="testimonial-wrap">
<div class="testimonial-item">
<img src="assets/img/testimonials/Nakiya.jpg" class="testimonial-img" alt="">
<h3>Nakiya Ali</h3>
<h4>Animation Designer</h4>
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Queen's Town is the best girls hostel in Indore. I am living here from past few months and find it really suitable according to my needs. They are completely able to fulfill the requirements of Girls students. The place is safe,secure with big rooms and good storage facility. They provide good food , hygienic food I must say that. I am happy that I am living in such a beautiful , clean & home like environment.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
</div>
<div class="testimonial-wrap">
<div class="testimonial-item">
<img src="assets/img/testimonials/shivani.jpg" class="testimonial-img" alt="">
<h3>Shivani Goyal</h3>
<h4>Designer</h4>
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Everything in Queen's Town is fantastic, best food eaten, absolutely beautifully picturesque, easy to drive around, plenty of shops if needed. I just love to spend time in the garden area. <i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
</div>
<div class="testimonial-wrap">
<div class="testimonial-item">
<img src="assets/img/testimonials/yasmin.jpeg" class="testimonial-img" alt="">
<h3>Kashima Ali</h3>
<h4>Software Engineer</h4>
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
One of a kind experience and after the nightmare I had in bhopal, I couldn’t have been happier. Lovely staff, lovely rooms, and all around wonderful atmosphere. Definitely stay here!! I’d like to stay more with my friends.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
</div>
<div class="testimonial-wrap">
<div class="testimonial-item">
<img src="assets/img/testimonials/fiza.jpeg" class="testimonial-img" alt="">
<h3>Fiza Ali</h3>
<h4>Medical Student</h4>
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
The place has a very lovely terrace where i spent most of my free time when i had any. The wifi worked perfectly but not at the terrace. And they have Netflix which was a plus <i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
</div>
<div class="testimonial-wrap">
<div class="testimonial-item">
<img src="assets/img/testimonials/shruti.JPG" class="testimonial-img" alt="">
<h3>Shruti Singh Tomar</h3>
<h4>Student</h4>
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
This is definitely a great place to stay in Indore! The staff is really nice and helpful. The hostel is small so it’s really quiet and cosy, it’s also clean. The free breakfast is small but it was enough for us.
We had a really nice stay and I surely recommend it :)
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
</div>
</div>
</div>
</section><!-- End Testimonials Section -->
<!-- ======= Portfolio Section ======= -->
<section id="portfolio" class="portfolio">
<div class="container">
<div class="section-title" data-aos="fade-up">
<h2>Portfolio</h2>
<p>Queen's Town Photo Gallery</p>
</div>
<div class="row" data-aos="fade-up" data-aos-delay="200">
<div class="col-lg-12 d-flex justify-content-center">
<ul id="portfolio-flters">
<li data-filter="*" class="filter-active">All</li>
<li data-filter=".filter-app">Hall</li>
<li data-filter=".filter-web">Bedroom</li>
<li data-filter=".filter-card">Other</li>
</ul>
</div>
</div>
<div class="row portfolio-container" data-aos="fade-up" data-aos-delay="400">
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/hall-1.png" class="img-fluid" alt="">
<div class="portfolio-info">
<div class="portfolio-links">
<a href="assets/img/portfolio/hall-1.png" data-gall="portfolioGallery" class="venobox" title="Hall Image"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/bed-3.png" class="img-fluid" alt="">
<div class="portfolio-info">
<div class="portfolio-links">
<a href="assets/img/portfolio/bed-3.png" data-gall="portfolioGallery" class="venobox" title="Bedroom Image"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/hall-3.png" class="img-fluid" alt="">
<div class="portfolio-info">
<div class="portfolio-links">
<a href="assets/img/portfolio/hall-3.png" data-gall="portfolioGallery" class="venobox" title="Hall Image"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-card">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/dining.png" class="img-fluid" alt="">
<div class="portfolio-info">
<div class="portfolio-links">
<a href="assets/img/portfolio/dining.png" data-gall="portfolioGallery" class="venobox" title="Dining Image"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/bed-2.png" class="img-fluid" alt="">
<div class="portfolio-info">
<div class="portfolio-links">
<a href="assets/img/portfolio/bed-2.png" data-gall="portfolioGallery" class="venobox" title="Bedroom Image"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/hall-2.png" class="img-fluid" alt="">
<div class="portfolio-info">
<div class="portfolio-links">
<a href="assets/img/portfolio/hall-2.png" data-gall="portfolioGallery" class="venobox" title="Hall Image"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-card">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/out.png" class="img-fluid" alt="">
<div class="portfolio-info">
<div class="portfolio-links">
<a href="assets/img/portfolio/out.png" data-gall="portfolioGallery" class="venobox" title="Entrance Image"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-card">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/kitch.png" class="img-fluid" alt="">
<div class="portfolio-info">
<div class="portfolio-links">
<a href="assets/img/portfolio/kitch.png" data-gall="portfolioGallery" class="venobox" title="Kitchen Image"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/bed-1.png" class="img-fluid" alt="">
<div class="portfolio-info">
<div class="portfolio-links">
<a href="assets/img/portfolio/bed-1.png" data-gall="portfolioGallery" class="venobox" title="Bedroom Image"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Portfolio Section -->
<!-- ======= Team Section ======= -->
<section id="team" class="team">
<div class="container">
<div class="section-title" data-aos="fade-up">
<h2>Team</h2>
<p>To explore more about the team of Queen's Town <a href="team.html">Click Here. </a></p>
</div>
<div class="row">
<div class="col-lg-4 col-md-6 d-flex align-items-stretch">
<div class="member" data-aos="zoom-in">
<div class="member-img">
<img src="assets/img/team/aniket.jpeg" class="img-fluid" alt="">
<div class="social">
<a href=""><i class="icofont-twitter"></i></a>
<a href=""><i class="icofont-facebook"></i></a>
<a href=""><i class="icofont-instagram"></i></a>
<a href=""><i class="icofont-linkedin"></i></a>
</div>
</div>
<div class="member-info">
<h4>ANIKET JAMLIYA</h4>
<span>MANAGING DIRECTOR & CO-FOUNDER</span>
<p></p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch">
<div class="member" data-aos="zoom-in" data-aos-delay="100">
<div class="member-img">
<img src="assets/img/team/robin.JPG" class="img-fluid" alt="">
<div class="social">
<a href=""><i class="icofont-twitter"></i></a>
<a href=""><i class="icofont-facebook"></i></a>
<a href=""><i class="icofont-instagram"></i></a>
<a href=""><i class="icofont-linkedin"></i></a>
</div>
</div>
<div class="member-info">
<h4>EMMANUEL STEPHEN</h4>
<span>MANAGING DIRECTOR & CO-FOUNDER</span>
<p></p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch">
<div class="member" data-aos="zoom-in" data-aos-delay="200">
<div class="member-img">
<img src="assets/img/team/profilepic - Copy.jpg" class="img-fluid" alt="">
<div class="social">
<a href=""><i class="icofont-twitter"></i></a>
<a href=""><i class="icofont-facebook"></i></a>
<a href=""><i class="icofont-instagram"></i></a>
<a href=""><i class="icofont-linkedin"></i></a>
</div>
</div>
<div class="member-info">
<h4>TANISHK CHATURVEDI</h4>
<span>IT HEAD & FOUNDER OF MOONSITE SOLUTIONS</span>
<p></p>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Team Section -->
<!-- ======= Pricing Section =======
<section id="pricing" class="pricing">
<div class="container">
<div class="section-title">
<h2>Pricing</h2>
<p>Sit sint consectetur velit nemo qui impedit suscipit alias ea</p>
</div>
<div class="row">
<div class="col-lg-4 col-md-6">
<div class="box" data-aos="zoom-in-right" data-aos-delay="200">
<h3>Free</h3>
<h4><sup>$</sup>0<span> / month</span></h4>
<ul>
<li>Aida dere</li>
<li>Nec feugiat nisl</li>
<li>Nulla at volutpat dola</li>
<li class="na">Pharetra massa</li>
<li class="na">Massa ultricies mi</li>
</ul>
<div class="btn-wrap">
<a href="#" class="btn-buy">Buy Now</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mt-4 mt-md-0">
<div class="box recommended" data-aos="zoom-in" data-aos-delay="100">
<h3>Business</h3>
<h4><sup>$</sup>19<span> / month</span></h4>
<ul>
<li>Aida dere</li>
<li>Nec feugiat nisl</li>
<li>Nulla at volutpat dola</li>
<li>Pharetra massa</li>
<li class="na">Massa ultricies mi</li>
</ul>
<div class="btn-wrap">
<a href="#" class="btn-buy">Buy Now</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mt-4 mt-lg-0">
<div class="box" data-aos="zoom-in-left" data-aos-delay="200">
<h3>Developer</h3>
<h4><sup>$</sup>29<span> / month</span></h4>
<ul>
<li>Aida dere</li>
<li>Nec feugiat nisl</li>
<li>Nulla at volutpat dola</li>
<li>Pharetra massa</li>
<li>Massa ultricies mi</li>
</ul>
<div class="btn-wrap">
<a href="#" class="btn-buy">Buy Now</a>
</div>
</div>
</div>
</div>
</div>
</section> End Pricing Section -->
<!-- ======= F.A.Q Section ======= -->
<section id="faq" class="faq">
<div class="container">
<div class="section-title" data-aos="fade-up">
<h2>Frequently Asked Questions</h2>
<p>To read more FAQ's about Queen's Town <a href="Faq.html"> Click Here.</a></p>
</div>
<ul class="faq-list">
<li data-aos="fade-up">
<a data-toggle="collapse" class="collapsed" href="#faq1">What identification documents are required for occupants? <i class="bx bx-chevron-down icon-show"></i><i class="bx bx-x icon-close"></i></a>
<div id="faq1" class="collapse" data-parent=".faq-list">
<p>
Queen's Town does not require any special documents but <br>
• Aadhar card copy
• Two Passport size photographs
<br>
are required. For more information you can contact the help desk.
</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="100">
<a data-toggle="collapse" href="#faq2" class="collapsed">Do you provide blankets, towels & toiletries? <i class="bx bx-chevron-down icon-show"></i><i class="bx bx-x icon-close"></i></a>
<div id="faq2" class="collapse" data-parent=".faq-list">
<p>
Keeping in mind the current scenario, to maintain hygiene & follow the safety measure during this pandemic of COVID19, we will not be providing Students with blanket, Towels or toiletries.
<br>Occupants need to carry their own towels, blankets & toiletries.
</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="200">
<a data-toggle="collapse" href="#faq3" class="collapsed">What are the Medical/Emergency facilities available for Occupants? <i class="bx bx-chevron-down icon-show"></i><i class="bx bx-x icon-close"></i></a>
<div id="faq3" class="collapse" data-parent=".faq-list">
<p>
There is doctor on call. We have tied with hospitals and medical centers to handle emergencies.
<br>Our Queen’s Town Staff will accompany the occupant till parent / guardian takes over.
<br>Also Queen’s Town has their own pharmacy for your essentials.
</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="300">
<a data-toggle="collapse" href="#faq4" class="collapsed">Will I be charged if I cancel my booking? <i class="bx bx-chevron-down icon-show"></i><i class="bx bx-x icon-close"></i></a>
<div id="faq4" class="collapse" data-parent=".faq-list">
<p>
If you have a free cancellation booking, you won't pay a cancellation fee. If your booking is no longer free to cancel or is non-refundable, you may incur a cancellation fee. Any cancellation fees for a booking is determined by the property. </p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="400">
<a data-toggle="collapse" href="#faq5" class="collapsed">What about housekeeping facility? <i class="bx bx-chevron-down icon-show"></i><i class="bx bx-x icon-close"></i></a>
<div id="faq5" class="collapse" data-parent=".faq-list">
<p>
We are very particular about daily maintenance of all the facilities such as kitchen , dinning, lobbies, rooms and toilets. </p>
</div>
</li>
</ul>
</div>
</section>
</section><!-- End F.A.Q Section -->
<!-- ======= More Services Section ======= -->
<section id="more-services" class="more-services">
<div class="container">
<div class="row">
<div class="col-md-6 d-flex align-items-stretch">
<div class="card" style='background-image: url("assets/img/more-services-1.jpg");' data-aos="fade-up" data-aos-delay="100">
<div class="card-body">
<h5 class="card-title"><a href="">What is it Like Staying in a Girl's Hostel in India?</a></h5>
<p class="card-text">Hey ladies. Did you just get a job offer in a city away from home? Are you wondering where you should stay in the </p>
<div class="read-more"><a href="blogs.html#blog1"><i class="icofont-arrow-right"></i> Read More</a></div>
</div>
</div>
</div>
<div class="col-md-6 d-flex align-items-stretch mt-4 mt-md-0">
<div class="card" style='background-image: url("assets/img/more-services-2.jpg");' data-aos="fade-up" data-aos-delay="200">
<div class="card-body">
<h5 class="card-title"><a href="">All the Things that make Queen's Town - the best student accommodation in indore</a></h5>
<Staying class="card-text">Staying away from family calls for greater care and better amenities than at home. Hostel isn’t just where you stay, it’s</p>
<div class="read-more"><a href="blogs.html#blog2"><i class="icofont-arrow-right"></i> Read More</a></div>
</div>
</div>
</div>
<div class="col-md-6 d-flex align-items-stretch mt-4">
<div class="card" style='background-image: url("assets/img/more-services-3.jpg");' data-aos="fade-up" data-aos-delay="100">
<div class="card-body">
<h5 class="card-title"><a href="">Stay as close to the action as possible</a></h5>
<p class="card-text">If you’ve travelled somewhere to surf then you should stay as close to the beach as possible, not a 30 minute bus </p>
<div class="read-more"><a href="blogs.html#blog3"><i class="icofont-arrow-right"></i> Read More</a></div>
</div>
</div>
</div>
<div class="col-md-6 d-flex align-items-stretch mt-4">
<div class="card" style='background-image: url("assets/img/more-services-4.jpg");' data-aos="fade-up" data-aos-delay="200">
<div class="card-body">
<h5 class="card-title"><a href="">Here's Why Girl's Hostel Life Is Always Fun!</a></h5>
<p class="card-text">The word “Hostel” may not sound too exciting, but a life at the hostel is totally different and filled with loads of </p>
<div class="read-more"><a href="blogs.html#blog4"><i class="icofont-arrow-right"></i> Read More</a></div>
</div>
</div>
</div>
</div>
</div>
</section><!-- End More Services Section -->
<!-- ======= Contact Section ======= -->
<section id="contact" class="contact">
<div class="container">
<div class="section-title" data-aos="fade-up">
<h2>Contact Us</h2>
</div>
<div class="row">
<div class="col-lg-4 col-md-6" data-aos="fade-up" data-aos-delay="100">
<div class="contact-about">
<img src="assets/img/contimg.png" class="img-fluid animated" alt="">
<div class="social-links">
<a href="https://twitter.com/QueensT99404721" class="twitter"><i class="icofont-twitter"></i></a>
<a href="https://www.facebook.com/queens.town.562/" class="facebook"><i class="icofont-facebook"></i></a>
<a href="https://www.instagram.com/queens_town_inn" class="instagram"><i class="icofont-instagram"></i></a>
<a href="https://www.linkedin.com/in/queen-s-town-79b333200/" class="linkedin"><i class="icofont-linkedin"></i></a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-4 mt-md-0" data-aos="fade-up" data-aos-delay="200">
<div class="info">
<div>
<i class="ri-map-pin-line"></i>
<p>859-F, Scheme No. 114, Part 1,<br> Near Marthoma Academy Indore, 452010</p>
</div>
<div>
<i class="ri-mail-send-line"></i>
<p>help.queenstown@gmail.com</p>
</div>
<div>
<i class="ri-phone-line"></i>
<p> 92946-96302 |
72408-78748</p>
</div>
</div>
</div>
<div class="col-lg-5 col-md-12" data-aos="fade-up" data-aos-delay="300">
<form action="/action_page.php" method="POST" data-netlify="true" class="php-email-form">
<div class="form-row">
<div class="col-md-12 form-group">
<input type="text" name="name" class="form-control" id="name" placeholder="Your Name" data-rule="minlen:4" data-msg="Please enter at least 4 chars" />
<div class="validate"></div>
</div>
<div class="col-md-12 form-group">
<input type="email" class="form-control" name="email" id="email" placeholder="Your Email" data-rule="email" data-msg="Please enter a valid email" />
<div class="validate"></div>
</div>
</div>
<div class="form-group">
<input type="text" class="form-control" name="subject" id="subject" placeholder="Subject" data-rule="minlen:4" data-msg="Please enter at least 8 chars of subject" />
<div class="validate"></div>
</div>
<div class="form-group">
<textarea class="form-control" name="message" rows="5" data-rule="required" data-msg="Please write something for us" placeholder="Message"></textarea>
<div class="validate"></div>
</div>
<!-- <div class="mb-3">
<div class="loading">Loading</div>
<div class="error-message"></div>
<div class="sent-message">Your message has been sent. Thank you!</div>
</div> -->
<div class="text-center"><button type="submit" class="button">Send Message</button></div>
</form>
<input type="hidden" name="form-name" value="contact">
</div>
</div>
</div>
</section><!-- End Contact Section -->
</main><!-- End #main -->
<!-- ======= Footer ======= -->
<footer id="footer">
<div class="footer-top">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-6">
<a href="#header" class="scrollto footer-logo"><img src="assets/img/hero-logo.png" alt=""></a>
<h3>Queen's Town</h3>
<p> DISCOVER A LUXURIOUS LIVING.</p>
</div>
</div> <hr>
<div class="footer-top">
<div class="container">
<div class="row">
<h4>Useful Links</h4> <br>
<div class=" col-md-4 footer-links">
<ul>
<li><i class="bx bx-chevron-right"></i> <a href="index.html">Home</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="aboutus.html">About Us</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="index.html#services">Services</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="index.html#why-us">Why Us</a></li>
</ul>
</div>
<div class=" col-md-4 footer-links">
<ul>
<li><i class="bx bx-chevron-right"></i> <a href="index.html#features">Features</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="index.html#testimonials">Testimonials</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="team.html">Our Team</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="Faq.html">Faqs</a></li>
</ul>
</div>
<div class=" col-md-4 footer-links">