forked from satwik0730/finalwebproj
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjaip.html
996 lines (843 loc) · 38 KB
/
jaip.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Title</title>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta charset="utf-8" />
<meta name="keywords" content="" />
<meta name="description" content="" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Anton&family=Cinzel:wght@600&family=Great+Vibes&family=Lobster+Two&family=MonteCarlo&family=PT+Serif:wght@700&family=Prata&family=Sail&family=The+Nautigal:wght@700&display=swap"
rel="stylesheet"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Anton&family=Cinzel:wght@600&family=PT+Serif:wght@700&family=Prata&display=swap"
rel="stylesheet"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Oswald&display=swap"
rel="stylesheet"
/>
<!-- <link rel="stylesheet" href="style.css" /> -->
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="" />
<meta name="author" content="" />
<title>History</title>
<!-- <link rel="stylesheet" href="responsive.css"> -->
<link
href="https://fonts.googleapis.com/css?family=Lora:400,400i,700,700i|PT+Serif:400,400i,700,700i|Poppins:300,400,500,600,700|Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i"
rel="stylesheet"
/>
<script
src="https://kit.fontawesome.com/0f5d72f27a.js"
crossorigin="anonymous"
></script>
<!-- Bootstrap CSS -->
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
crossorigin="anonymous"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Anton&family=Cinzel:wght@600&family=Great+Vibes&family=MonteCarlo&family=PT+Serif:wght@700&family=Prata&display=swap"
rel="stylesheet"
/>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/swiffy-slider.min.js"
crossorigin="anonymous"
defer
></script>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/swiffy-slider.min.css"
rel="stylesheet"
crossorigin="anonymous"
/>
<link
href="https://fonts.googleapis.com/css2?family=Berkshire+Swash&family=Cherish&family=Cinzel+Decorative&family=Corinthia&family=Gwendolyn:wght@400;700&family=Kaushan+Script&family=Kolker+Brush&family=Lobster&family=Lobster+Two:ital,wght@1,700&family=MonteCarlo&family=Praise&family=Tangerine&display=swap"
rel="stylesheet"
/>
<script src="https://code.jquery.com/jquery-3.5.1.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/owl.carousel.min.js"></script>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.min.css"
/>
<!-- Bootstrap CSS -->
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
crossorigin="anonymous"
/>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<!-- Bootstrap CSS -->
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
crossorigin="anonymous"
/>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
</head>
<body>
<style>
@import url('https://fonts.googleapis.com/css2?family=Berkshire+Swash&family=Cherish&family=Cinzel+Decorative&family=Corinthia&family=Gwendolyn:wght@400;700&family=Kaushan+Script&family=Kolker+Brush&family=Lobster&family=Lobster+Two:ital,wght@1,700&family=Mea+Culpa&family=MonteCarlo&family=Playfair+Display:ital@1&family=Praise&family=Tangerine&display=swap');
/* p{
color: rgb(0, 0, 0);
line-height: 2rem;
font-size: 1rem;
font-weight: normal;
font-family: 'Monte Carlo';
}
body{
background:rgb(255, 255, 255);
background-color:rgb(255, 255, 255) ;
}
.btn a {
position: absolute;
background:linear-gradient(#b778ff, rgb(255, 0, 43));
color: white;
margin-right: 55%;
cursor: pointer;
border-radius: 50px;
height: 3.5rem;
padding-top: 1rem;
width:10rem;
}
h2{
color: rgb(0, 20, 87);
text-align: center;
font-size: 2.5rem;
margin-bottom: 4rem;
font-family: 'Playfair Display';
} */
body{
background: url("img/jaip.avif");
background-size: 100% 52rem;
background-repeat: no-repeat;
}
h5 {
font-size: medium;
font-weight: bolder;
font-family: "Gloss_And_Bloom ", sans-serif;
}
p {
font-weight: bold;
font-size: small;
font-family: "Gloss_And_Bloom ", sans-serif;
}
#uy {
font-size: 5.5rem;
font-style: normal;
margin-top: 3rem;
font-family: Gloss_And_Bloom , sans-serif;
}
.signature {
font-style: italic;
font-size: 12px;
color: #000000;
padding-top: 15px;
transition: all 0.3s ease-in-out;
}
.signature:hover {
color: white;
}
.content2 {
display: flex;
}
.navigationWrapper {
display: flex;
align-items: center;
justify-content: space-between;
padding: 20px;
background-color: rgb(255, 255, 255);
color: rgb(0, 0, 0);
text-transform: capitalize;
overflow: hidden;
width: 100%;
text-decoration: none;
outline: none;
cursor: pointer;
}
.container {
justify-content: space-between;
align-items: center;
display: flex;
}
.ourclient
{
background: linear-gradient(rgba(0, 0, 0, 0.705) , rgba(0, 0, 0, 0.705)), url("img/hester-qiang-bSrqpoOz7Ec-unsplash.jpg");
background-size: cover;
height: 56vh;
align-items: center;
text-align: center;
}
.card-group img
{
background: linear-gradient(rgba(0, 0, 0, 0.61) , rgba(0, 0, 0, 0.61));
}
/* .ourclient img
{
margin: 3.5rem;
padding-top: 4.2rem;
} */
.logoWrapper {
display: flex;
}
.stylish {
font-weight: bolder;
}
h1,
h2,
h3,
h4,
h5,
h6 {
color: white;
font-family: "Gloss_And_Bloom", sans-serif;
}
.logo {
padding-left: 2px;
color: #e2b13c;
}
.navigation {
display: flex;
list-style-type: none;
}
li {
opacity: 1;
list-style-type: none;
color: rgb(0, 0, 0);
text-decoration: none;
transition: all 0.8s ease-in-out;
}
.parent {
padding: 0 5px;
cursor: pointer;
}
.link {
position: relative;
display: flex;
align-items: center;
text-decoration: none;
transition: all 0.3s ease-in-out;
outline: none;
color: rgb(65, 65, 65);
font-size: larger;
font-family: "Oswald", sans-serif;
font-weight: 500;
padding-top: 1rem;
}
.link:hover {
color: #e2b13c;
text-decoration: none;
outline: none;
transform: scale(1.1);
}
.fa-minus {
opacity: 0;
transition: all 0.3s ease-in-out;
position: absolute;
left: -16px;
top: 3px;
}
.fa-plus {
opacity: 1;
transition: all 0.3s ease-in-out;
}
.fas {
color: #e2b13c;
margin: -2px 4px 0;
font-size: 10px;
transition: all 0.3s ease-in-out;
}
.subnavigation {
display: none;
list-style-type: none;
width: 500px;
position: absolute;
top: 40%;
}
.main-box {
background: rgb(0, 0, 0);
width: 100%;
height: 3.5rem;
}
/* .box {
transition: 1s;
display: flex;
width: 100%;
height: 70vh;
animation-name: animate;
animation-direction: alternate-reverse;
animation-duration: 30s;
animation-fill-mode: forwards;
animation-iteration-count: infinite;
animation-play-state: running;
animation-timing-function: ease;
}
*/
.responsive {
width: 40%;
height: auto;
}
.responsive1 {
width: 15%;
height: auto;
}
.responsive::before {
width: 47%;
height: auto;
border: 2px 2px black;
}
#lg {
width: 50%;
height: auto;
}
.sidemenu {
position: fixed;
top: 0px;
left: 0px;
height: 100%;
width: 0px;
background-color: rgba(2, 2, 2, 0.89);
z-index: 1;
padding-top: 100px;
overflow-x: hidden;
transition: all 0.5s;
}
li {
display: inline-block;
margin: 10px;
}
@import url(https://fonts.googleapis.com/css?family=Open+Sans);
#zee {
width: 80%;
text-align: center;
margin: 0;
padding: 0;
display: flex;
position: absolute;
top: 65%;
left: 30%;
transform: translate(-50%, -50%);
}
li {
display: inline-block;
margin: 10px;
}
.download {
width: 175px;
height: 65px;
background: rgb(0, 0, 0);
float: left;
border-radius: 8px;
position: relative;
color: #fff;
cursor: pointer;
border: 1px solid #fff;
}
.download .fa {
color: #fff;
position: absolute;
top: 45%;
left: 15%;
transform: translate(-50%, -50%);
}
.p1,
.p2 {
position: absolute;
left: 70px;
}
.p1 {
top: 10px;
font-size: 12px;
}
.p2 {
top: 25px;
font-size: 16px;
}
.download:hover {
filter: invert(100%);
}
h3 {
color: black;
}
.box .content a {
background: #000;
width: 12rem;
height: 3rem;
}
.footer-main {
background: rgb(0, 0, 0);
padding: 65px 0 0;
}
.footer-main .logo-block {
padding: 70px 0;
text-align: center;
border-bottom: 1px solid #222222;
margin-bottom: 40px;
}
.footer-main .ftr-widget {
margin-bottom: 80px;
display: inline-block;
}
.footer-main .widget_about a.navbar-brand {
float: none;
height: auto;
padding: 0;
}
.footer-main .widget_about p {
color: #ffffff;
font-size: 14px;
font-family: "PT Serif", serif;
letter-spacing: 0.28px;
line-height: 26px;
padding-right: 35px;
margin-bottom: 25px;
margin-top: 25px;
}
.footer-main .widget_about ul {
padding-left: 0;
margin-bottom: 0;
}
.footer-main .widget_about ul li {
display: inline-block;
margin-right: 0px;
}
.footer-main .widget_about ul li a {
color: #ffffff;
display: inline-block;
border-radius: 0%;
height: 39px;
width: 39px;
line-height: 39px;
text-align: center;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;
transition: all 1s ease 0s;
}
.footer-main .widget_about ul li a:hover {
background-color: #ffffff;
color: rgb(0, 0, 0);
}
.footer-main h3.widget-title {
color: rgb(255, 255, 255);
display: inline-block;
font-family: "Poppins", sans-serif;
font-size: 16px;
font-weight: 600;
text-transform: uppercase;
position: relative;
margin-top: 20px;
margin-bottom: 30px;
line-height: 26px;
letter-spacing: 0.64px;
padding-bottom: 30px;
}
.footer-main h3.widget-title::before {
background-color: #e2b13c;
border-right: 4px solid #fff;
box-shadow: -3px 0 0 0 #111 inset;
content: "";
display: inline-block;
height: 2px;
bottom: 0;
position: absolute;
width: 60px;
}
.footer-main .widget_link ul {
padding-left: 0;
list-style: none;
}
.footer-main .widget_link ul li {
margin-bottom: 22px;
}
.footer-main .widget_link ul li.col-md-6 {
padding-left: 0;
}
.footer-main .widget_link ul li a {
color: #ffffff;
font-family: "PT Serif", serif;
font-size: 15px;
letter-spacing: 0.3px;
text-transform: capitalize;
text-decoration: none;
}
.footer-main .widget_link ul li a:hover {
color: #ffffff;
}
.footer-main .copyright {
border-top: 1px solid #838383;
padding: 23px 0;
text-align: center;
background-color: rgb(0, 0, 0);
color: #ebebeb;
}
.footer-main .copyright p {
font-family: "PT Serif", serif;
font-size: 14px;
margin-bottom: 0;
letter-spacing: 0.28px;
text-transform: capitalize;
}
.footer-main .widget_subscribe .form-control {
background-color: #000;
border: none;
box-shadow: none;
border-radius: 0;
display: inline-block;
font-family: "PT Serif", serif;
font-style: italic;
font-size: 12px;
height: 45px;
padding: 6px 30px;
letter-spacing: 0.48px;
margin-bottom: 20px;
width: 100%;
}
.footer-main .widget_subscribe .form-control::-webkit-input-placeholder {
color: #777;
}
.footer-main .widget_subscribe .form-control:-moz-placeholder {
/* Firefox 18- */
color: #777;
}
.footer-main .widget_subscribe .form-control::-moz-placeholder {
/* Firefox 19+ */
color: #777;
}
.footer-main .widget_subscribe .form-control:-ms-input-placeholder {
color: #777;
}
.footer-main .widget_subscribe .form-control:focus {
border: none;
}
.footer-main .widget_subscribe button {
background-color: #ff0000;
border: none;
border-radius: 6px;
color: rgb(255, 255, 255);
font-family: "Poppins", sans-serif;
font-weight: 700;
font-size: 12px;
letter-spacing: 0.84px;
padding: 12px 0;
text-transform: uppercase;
text-decoration: none;
width: 50%;
/* -webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
/* -o-transition: all 1s ease 0s; */
transition: all 0.5s ease 0s;
}
.footer-main .widget_subscribe button:hover {
transform: scale(1.1);
}
h5{
color: #000;
font-family: "Glass_And_Bloom",sans-serif;
}
.btn{
color: white;
}
.ourclient
{
background: linear-gradient(rgba(0, 0, 0, 0.705) , rgba(0, 0, 0, 0.705)), url("img/hester-qiang-bSrqpoOz7Ec-unsplash.jpg");
background-size: cover;
height: 56vh;
align-items: center;
text-align: center;
padding-top: 6rem;
}
.GFG {
background-color: rgb(0, 0, 0);
border: none;
color: rgb(255, 255, 255);
padding: 5px 10px;
text-align: center;
display: inline-block;
height: 3rem;
width: 9rem;
margin: 10px 30px;
cursor: pointer;
}
</style>
<header>
<div id="dv" style="background: white;height: 3.5rem;">
<!-- <h1>gggggg</h1> -->
<div class="container" style="float: right; color: white; font-weight: bolder ; font-size: x-large; width:70%;height: 3.5rem; clip-path: polygon(100% 0, 100% 100%, 5% 100%, 0 0);background-color: rgb(44, 44, 44);">
<div id="sec" style="margin-left: 8rem;font-size: large;"><i class="fa fa-phone" aria-hidden="true"></i> 1-800-23-456-7890 <span style="font-size: xx-small;text-transform: uppercase;color: #e2b13c; justify-content: center;align-items: center;">WE will always welcome joyfully any opportunity that comes our way to be of service to you </span></div>
</div>
</div>
<nav class="navigationWrapper" style="background-color: white;position:sticky;top: 0;">
<div class="logoWrapper" style="background-color: white;">
<img id="lg" style="margin-top: -3rem;" src="img/default.png" alt="">
</div>
<ul class="navigation">
<li class="parent">
</i
><a class="link" href="#">
<i style="font-size: large; color: #000;" class="fas fa-home"></i>
Home
</a>
</li>
<li class="parent"><a class="link" href="#"><i style="font-size: large; color: #000;" class="fas fa-address-card"></i> About</a></li>
<li class="parent"><a class="link" href="contact.html"><i style="font-size: large; color: #000;" class="fas fa-phone-alt"></i> Contact</a></li>
<li class="parent" id="clients">
<a class="link" href="login.html"><i style="font-size: large; color: #000;" class="fas fa-sign-in-alt"></i> SignIN</a>
</li>
</ul>
</nav>
</header>
<div class="detail" style="background: white;margin-top: 20rem;">
<div class="client" style="background: white;">
<h1 style="padding-top: 2rem; font-size: 6rem;color:rgba(170, 170, 170, 0.438);text-align: center;font-weight: bolder;margin-bottom: -9rem;">THE PINK CITY</h1>
<h1 style="color: #272727;text-align: center; font-family:Gloss_And_Bloom , sans-serif;padding-top: 4rem; justify-content: space-around; font-weight: bold; width: 100%;">JAIPUR<span style="color: #e2b13c;font-family:Gloss_And_Bloom , sans-serif; justify-content: space-around; font-weight: bold; width: 100%;">INDIA</span></h1>
<br><br><br>
</div>
<br>
<p style="color: rgb(102, 102, 102);font-family:Gloss_And_Bloom , sans-serif; font-size: 1rem; line-height: 2rem ;background-color: white; font-weight:bold;margin-left:7rem;margin-right: 7rem;">No trip to India is complete without spending time in Jaipur. Affectionately nicknamed "The Pink City" for the blushing color of its historic buildings, Jaipur is a princely wonderland of culture and heritage, brimming with architectural gems. It's also a preeminent stop in India's famous Golden Triangle, a popular tourist circuit.
Prepare to be captivated by the grandeur of Jaipur, the capital of Rajasthan. City Palace gives you a taste of the lavish lifestyle afforded to the royal family of Jaipur. Just next door, the astronomical instruments at the Jantar Mantar observatory bring the mysteries of space down to Earth. And depending on the time of your visit, you may be able to experience one of the many festivals that fill Jaipur's annual calendar, like the International Kite Festival in January or Elephant Festival in early spring.
Ready to make your trip to "The Paris of India" a memorable experience? Map out your itinerary with our guide to the top attractions and places to visit in Jaipur.</p>
<br><br>
<div style=" margin-left: 45%; justify-content: center;" class="btn">
<a href="travel.html">
<button class="GFG">
Book Ticket >
</button>
</a>
</div>
</p>
</div>
<br><br>
<div style="color: rgb(102, 102, 102);font-family:Gloss_And_Bloom , sans-serif; font-size: 1rem; line-height: 2rem ;background-color: white; font-weight:bold;">
<h2 >
<span style="color: #000;font-family:Gloss_And_Bloom , sans-serif; line-height: 2rem ;background-color: white; font-weight:bold;margin-left:7rem;margin-right: 7rem;text-transform: uppercase;">hawa
<span style="color: #e2b13c; text-transform: uppercase;">mahal</span></span>
</h2><br>
<!-- <img style="width: 50% ; height: 50%;float:right ;" src="images/2018022683-olw9ej502e1eaouty904gz596xv5pc3z4d2r3pblhm.jpg" alt=""> <br><br><br><br> -->
<p style="color: rgb(102, 102, 102); font-family:Gloss_And_Bloom , sans-serif; font-size: 1rem; line-height: 2rem ;background-color: white; font-weight:bold;margin-left:7rem;margin-right: 7rem;">If you had any preconceived notions about how the buildings in Jaipur look, they probably came from Hawa Mahal (Palace of Breeze). It has all of the distinctive architectural features that appear in postcards of the city, from the salmon-pink, honeycombed facade, built to resemble the crown of Hindu god Krishna, to the geometric accents and rows of tiny windows.
The landmark was built in 1799 to allow royal ladies to watch festivals on the street without being seen by the public. Its 953 windows allow plenty of breeze to pass through, making it an ideal summer palace.
Tourists can learn about the history of the sandstone structure at the palace's small museum–the ceremonial armor collection is particularly interesting. You can also wander the narrow hallways that run throughout the palace. Don't miss the colorful glasswork in windows and doorways, which cast an otherworldly glow on chambers throughout Hawal Mahal.
</p>
</div>
<br><br><br><br>
<div style="color: rgb(102, 102, 102);font-family:Gloss_And_Bloom , sans-serif; font-size: 1rem; line-height: 2rem ;background-color: white; font-weight:bold;">
<h2 >
<span style="color: #000;font-family:Gloss_And_Bloom , sans-serif; line-height: 2rem ;background-color: white; font-weight:bold;margin-left:7rem;margin-right: 7rem;text-transform: uppercase;"> jantar
<span style="color: #e2b13c; text-transform: uppercase;">mantar</span></span>
</h2><br>
<!-- <img style="width: 50% ; height: 50%;float:right ;" src="images/2018022683-olw9ej502e1eaouty904gz596xv5pc3z4d2r3pblhm.jpg" alt=""> <br><br><br><br> -->
<p style="color: rgb(102, 102, 102); font-family:Gloss_And_Bloom , sans-serif; font-size: 1rem; line-height: 2rem ;background-color: white; font-weight:bold;margin-left:7rem;margin-right: 7rem;">At first glance, Jantar Mantar may look to be nothing more than a bunch of larger-than-life abstract sculptures. But this is not an art gallery–it's a special collection of astronomical tools started by Rajput ruler Jai Singh II to measure the heavens nearly 300 years ago.
Each of the 20 or so structures at the UNESCO World Heritage Site serves a distixnctive purpose. The observatory's massive sun dial, known as Samrat Yantra, is particularly striking. At 27 meters tall, it casts a huge shadow that accurately measures time down to two seconds.
The elaborate Jai Prakash also tracks the passing of time, using the shadow of a metal plate suspended above a sunken bowl-like structure. Other tools at the observatory can track stars and even predict eclipses.
Hot tip: It's worth hiring a private guide at Jantar Mantar if you want to learn how each of the structures work.
</p>
</div>
<br><br><br><br>
<div style="color: rgb(102, 102, 102);font-family:Gloss_And_Bloom , sans-serif; font-size: 1rem; line-height: 2rem ;background-color: white; font-weight:bold;">
<h2 >
<span style="color: #000;font-family:Gloss_And_Bloom , sans-serif; line-height: 2rem ;background-color: white; font-weight:bold;margin-left:7rem;margin-right: 7rem;text-transform: uppercase;"> amber
<span style="color: #e2b13c; text-transform: uppercase;">fort</span></span>
</h2><br>
<!-- <img style="width: 50% ; height: 50%;float:right ;" src="images/2018022683-olw9ej502e1eaouty904gz596xv5pc3z4d2r3pblhm.jpg" alt=""> <br><br><br><br> -->
<p style="color: rgb(102, 102, 102); font-family:Gloss_And_Bloom , sans-serif; font-size: 1rem; line-height: 2rem ;background-color: white; font-weight:bold;margin-left:7rem;margin-right: 7rem;">
Jaipur is home to one of India's most-visited forts: Amber Fort. Built in the year 1592, the sandstone and marble monolith stands atop a small hill roughly 20 minute's driving distance northeast of the center of Jaipur. It's best known for being a pristine example of Rajasthani architecture.
Getting to Amber Fort typically involves a short uphill hike that's well worth the effort. It's decked out with intricate patterns of inlaid marble in nearly every color of the rainbow. The fort is laid out into four separate sections, each of which has a spectacular garden courtyard outside. While you'd never know it from above, you can actually explore the fort's underground tunnels, some of which have been restored.
This UNESCO World Heritage Site has a fascinating history of legends, betrayals, and romance–but the best way for tourists to hear these stories is to hire a private guide at the Amber Fort.
</p>
</div>
<br><br><br><br>
<div style="color: rgb(102, 102, 102);font-family:Gloss_And_Bloom , sans-serif; font-size: 1rem; line-height: 2rem ;background-color: white; font-weight:bold;">
<h2 >
<span style="color: #000;font-family:Gloss_And_Bloom , sans-serif; line-height: 2rem ;background-color: white; font-weight:bold;margin-left:7rem;margin-right: 7rem;text-transform: uppercase;"> albert hall
<span style="color: #e2b13c; text-transform: uppercase;">museum </span></span>
</h2><br>
<!-- <img style="width: 50% ; height: 50%;float:right ;" src="images/2018022683-olw9ej502e1eaouty904gz596xv5pc3z4d2r3pblhm.jpg" alt=""> <br><br><br><br> -->
<p style="color: rgb(102, 102, 102); font-family:Gloss_And_Bloom , sans-serif; font-size: 1rem; line-height: 2rem ;background-color: white; font-weight:bold;margin-left:7rem;margin-right: 7rem;">
When English writer Rudyard Kipling visited the Albert Hall Museum in Jaipur, he wrote that it was a "rebuke to all other museums in India from Calcutta downwards." That's high praise coming from the son of a curator, and fitting for this renowned institution.
The oldest museum in Rajasthan, the Albert Hall Museum boasts an extensive collection of art and historically significant artifacts. Come for the Egyptian mummy, stay to see antique coins from different periods in India's history, charming permanent exhibits of miniature paintings, 18th-century costumes worn by members of different castes, and a peculiar collection of 19th-century clay figures demonstrating all the yoga poses.
</p>
</div>
<br><br><br><br>
<div style=" margin-left: 45%; justify-content: center;" class="btn">
<a href="#">
<button style="background-color: #e2b13c;
border: none;
color: rgb(255, 255, 255);
padding: 5px 10px;
text-align: center;
display: inline-block;
height: 3rem;
width: 9rem;
margin: 10px 30px;
cursor: pointer;">
Learn More >
</button>
</a>
</div>
<br><br>
<footer class="footer-main container-fluid no-padding">
<div class="container">
<div class="row">
<div class="col-md-4 col-sm-6 col-xs-6">
<aside class="ftr-widget widget_about" style="color: white;">
<a title="Logo" href="index-2.html" class="navbar-brand"><img width="75%" src="images/default.png" alt=""></a>
<p>
Then one day he was shooting at some food and up the ground came
a crude oil day he was shooting at some food.
</p>
<ul id="li">
<li>
<a id="li1" style="background: rgb(255, 230, 0); color: #000;size: 5rem;" href="#" title="Facebbok">
<i id="ii" class="fa fa-snapchat"></i>
</a>
</li>
<li>
<a id="li1" style="background:rgb(68, 118, 255) ;" href="#" title="Twitter"><i id="ii" class="fa fa-twitter"></i></a>
</li>
<li>
<a id="li1" style="background:red ;" href="#" title="Google">
<i id="ii" class="fa fa-google-plus"></i>
</a>
</li>
<li>
<a id="li1" style="background: linear-gradient(135deg,rgb(43, 0, 143),rgb(255, 0, 64),rgb(255, 208, 0));" href="#" title="Instagram">
<i id="ii" class="fa fa-instagram"></i>
</a>
</li>
<li>
<a id="li1" style="background:rgb(0, 202, 0) ;" href="#" title="Linkedin">
<i id="ii" class="fa fa-whatsapp"></i>
</a>
</li>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<ul id="zee">
<li>
<div class="download android">
<img style="margin-right: 7rem;margin-top: 1rem;" src="images/google-play.png" alt="">
<span class="p1">Download from</span>
<span class="p2">Google Play</span>
</div>
</li>
<li>
<div style="background-color: white;color: #000;font-weight: bolder;" class="download apple">
<i style="color: black;" class="fa fa-apple fa-2x"></i>
<span class="p1">Download from</span>
<span class="p2">App Store</span>
</div>
</li>
</ul>
</ul>
</aside>
</div>
<div class="col-md-3 col-sm-6 col-xs-6">
<aside class="ftr-widget widget_link">
<h3 class="widget-title">INFORMATION</h3>
<ul>
<li class="col-md-6 col-sm-6 col-xs-6">
<a href="about.html" title="About">About</a>
</li>
</li>
<li class="col-md-6 col-sm-6 col-xs-6">
<a href="#" title="History">History</a>
</li>
<li class="col-md-6 col-sm-6 col-xs-6">
<a href="gallery.html" title="Gallery">Gallery</a>
</li>
<li class="col-md-6 col-sm-6 col-xs-6">
<a href="#" title="Services">Services</a>
</li>
<li class="col-md-6 col-sm-6 col-xs-6">
<a href="contactus.html" title="Contact">Contact</a>
</li>
</ul>
</aside>
</div>
<div class="col-md-2 col-sm-6 col-xs-6">
<aside class="ftr-widget widget_link">
<h3 class="widget-title">resources</h3>
<ul>
<li><a href="#" title="Terms of Use">Terms of Use</a></li>
<li><a href="#" title="Privacy Policy">Privacy Policy</a></li>
<li><a href="#" title="Sitemaps">Sitemaps</a></li>
</ul>
</aside>
</div>
<div class="col-md-3 col-sm-6 col-xs-6">
<aside class="ftr-widget widget_subscribe">
<h3 class="widget-title">newsletter</h3>
<input style="background: rgb(192, 192, 192);color: #000;"
type="text"
class="form-control"
placeholder="Your Email id" />
<button type="button" title="Subcribe" class="btn">
Subcribe
</button>
</aside>
</div>
</div>
</div>
<div class="container-fluid no-padding copyright">
<p>
copyrights <i class="fa fa-copyright"></i> 2022. all rights reserved
</p>
</div>
</footer>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
<script>
function openFunction(){
document.getElementById("menu").style.width="300px";
document.getElementById("mainbox").style.marginLeft="300px";
document.getElementById("mainbox").innerHTML="";
}
function closeFunction(){
document.getElementById("menu").style.width="0px";
document.getElementById("mainbox").style.marginLeft="0px";
document.getElementById("mainbox").innerHTML="☰ MENU";
}
</script>
</body>
</html>