-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathamrit.html
992 lines (839 loc) · 38.8 KB
/
amrit.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
<!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("images/portfolio-6.jpg");
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;">SPIRITUAL 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%;">AGMRITSAR<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;">Amritsar historically also known as Rāmdāspur and colloquially as Ambarsar, is the second largest city in the Indian state of Punjab, after Ludhiana. It is a major cultural, transportation and economic centre located in the Majha region of Punjab. The city is the administrative headquarters of the Amritsar district.
According to the 2011 census, the population of Amritsar was 1,132,761. It is one of the ten Municipal Corporations in the state, and Karamjit Singh Rintu is the current mayor of the city.[5] The city is situated 217 km (135 mi) northwest of state capital Chandigarh, 455 km (283 miles) northwest of New Delhi, the national capital, and 47 km (29.2 miles) northeast of Lahore, Pakistan, with the Indo-Pak Border (Wagah) being only 28 km (17.4 mi) away.
Amritsar has been chosen as one of the heritage cities for HRIDAY scheme of the Government of India.[6] Amritsar is home to Harmandir Sahib, popularly known as "the Golden Temple," one of Sikhism's most spiritually significant and most-visited gurudwaras. The city is also known for its wooden chessboards and chess pieces manufacturing industry</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;"> golden
<span style="color: #e2b13c; text-transform: uppercase;">temple</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;">The Golden Temple is an open house of worship for all people, from all walks of life and faiths.[3] It has a square plan with four entrances, and a circumambulation path around the pool. The four entrances to the temple symbolises the Sikh belief in equality and the Sikh view that all people are welcome into their holy place.[14] The complex is a collection of buildings around the sanctum and the pool.[3] One of these is Akal Takht, the chief centre of religious authority of Sikhism.[5] Additional buildings include a clock tower, the offices of the Gurdwara Committee, a Museum and a langar – a free Sikh community–run kitchen that offers a vegetarian meal to all visitors without discrimination.[5] Over 100,000 people visit the holy shrine daily for worship.[15] The Gurdwara complex has been nominated as a UNESCO World Heritage Site, and its application is pending on the tentative list of UNESCO.
</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;"> jallianwala
<span style="color: #e2b13c; text-transform: uppercase;">bagh</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;">In 1919, in response to excluding Mahatma Gandhi from visiting Punjab, the secret deportation of Saifuddin Kitchlew and Satyapal on 10 April and the reactions to the Rowlatt Act, Punjab had witnessed attempts of Indians to gather and protest.[1] On the morning of Baisakhi, 13 April 1919, to the sound of military drums by the cities town criers, 19 locations around the city were read out Brigadier General R.E.H. Dyer's new rules.[1] He had placed restrictions on leaving the city without a permit, banned all "processions of any kind"[1] and any congregation of more than four people, and announced that "any person found in the streets after 8 pm will be shot".[1] The announcements came on a background of noise and unusual heat, missing key locations around the city, meaning that the notice was not widely disseminated.[1] Dyer was subsequently informed at 12.40 pm that day, that a political gathering was to be held at Jallianwala Bagh.[1] By the time Dyer arrived with 90 Sikh, Gurkha, Baloch, Rajput troops from 2-9th Gurkhas, the 54th Sikhs and the 59th Sind Rifles, there was a crowd of 20,000; a mix of speakers, listeners, picnic makers, men, women and children of all ages, including Sikhs, Hindus, Muslims and Christians.[1][3] Dyer then ordered his troops to fire at the crowds.[4] 1,650 rounds were fired and the number killed and injured have since been disputed.[
</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;"> partition
<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;">
The year 1947 was a big one for India. Not only was it the year that India gained its independence from Great Britain, it was also the year it split into the two different entities of India and Pakistan–an event known as the Partition of India.
Tourists in Amritsar can learn about this defining moment in history at the Partition Museum, the only institution in the world devoted entirely to Partition. It features a haunting collection of newspaper clippings, antique photographs, and oral histories with people who experienced the violence leading up to the separation of the two countries, and the resettling of refugees after the event. The experience will give you a deeper understanding of the source of rivalry between India and Pakistan.
On your way out of the museum, jot down a message on a green leaf and hang it on the Tree of Hope.
</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;"> wagah border
<span style="color: #e2b13c; text-transform: uppercase;">ceremony </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;">A 31-kilometer drive west from the city center of Amritsar will take you to the border of Pakistan, where a curious border-closing ceremony takes place at sunset every afternoon. Full of pomp and circumstance, the Beating Retreat Ceremony involves an ostentatious display of goose-stepping guards from the Indian Border Security Force and the Pakistan Rangers saluting each other, lowering and folding their flags, and closing the gates at the border.
The experience gives tourists (typically seated in a special VIP section, once they flash their foreign passport) the chance to see the stark differences between Pakistan and India. On the Pakistan side, you'll see men and women sitting separately in stadium-style seating, and the vibe is much more subdued.
On the Indian side, however, it's a patriotic party. Bollywood music blasts from speakers as women dance in the street, while those in the stands wave Indian flags.
While just 45-minutes long, the entire ceremony gives you enough memories for hours of storytelling back at home.
</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>