forked from satwik0730/finalwebproj
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdelhi.html
982 lines (836 loc) · 38.5 KB
/
delhi.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
<!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/bootstrap@5.1.3/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/swiffy-slider@1.2.0/dist/js/swiffy-slider.min.js"
crossorigin="anonymous"
defer
></script>
<link
href="https://cdn.jsdelivr.net/npm/swiffy-slider@1.2.0/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;">MAGNANIMOUS DELHI</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%;">DELHI<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;">Delhi officially the National Capital Territory (NCT) of Delhi, is a city and a union territory of India containing New Delhi, the capital of India.[18][19] Straddling the Yamuna river, primarily its western or right bank, Delhi shares borders with the state of Uttar Pradesh in the east and with the state of Haryana in the remaining directions. The NCT covers an area of 1,484 square kilometres (573 sq mi) According to the 2011 census, Delhi's city proper population was over 11 million,[6][20] while the NCT's population was about 16.8 million.[7] Delhi's urban agglomeration, which includes the satellite cities of Ghaziabad, Faridabad, Gurgaon and Noida in an area known as the National Capital Region (NCR), has an estimated population of over 28 million, making it the largest metropolitan area in India and the second-largest in the world (after Tokyo).</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;"> India
<span style="color: #e2b13c; text-transform: uppercase;">gate</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 All India War Memorial, popularly known as the India Gate, is located along the Rajpath in New Delhi. The imposing structure of India Gate is an awe-inspiring sight and is often compared to the Arch de Triomphe in France, the Gateway of India in Mumbai and the Arch of Constantine in Rome. This 42-meter tall historical structure was designed by Sir Edwin Lutyens and is one of the largest war memorials in the country. India Gate is also famous for hosting the Republic Day Parade every year.
Dedicated to 82,000 Indian and British soldiers who died during the First World War and the Third Anglo-Afghan War, this monument has the names of 13,300 servicemen inscribed on its surface. The premises of India Gate also houses the Amar Jawan Jyoti, which is a kindled structure right underneath the archway. Owing to its rich historical background and astonishing architecture, India Gate has become one of the most popular picnic spots in the city.
</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;"> red
<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;">The Red Fort is a historical fortification in the old Delhi area. Shah Jahan constructed it in the year 1639 as a result of a capital shift from Agra to Delhi. Used as the main residence of the emperors of the Mughal dynasty, this imposing piece of architecture derives its name from its impregnable red sandstone walls. In addition to accommodating the emperors and their households, it was the ceremonial and political centre of the Mughal state and the setting for events critically impacting the region. Today, this monument is home to several museums that have an assortment of precious artefacts on display. Every year, the Indian Prime Minister unfurls the national flag here on the Independence Day.
Formerly known as Quila-e-Mubarak or the Blessed Fort, the Red Fort lies along the banks of the river Yamuna, whose waters fed the moats surrounding the fort. It was a part of the medieval city of Shahjahanabad, popularly known today as 'Old Delhi'. The entire fort complex is said to represent the architectural creativity and brilliance of Mughal architecture. With so much history and heritage associated with it, the Red Fort is one of the most popular monuments in India and a major tourist attraction in Delhi. It became a UNESCO world heritage site in 2007. The Archaeological Survey of India is at present responsible for the security and preservation of this magnificent monument.
</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;">lotus
<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;">
Located in the national capital of New Delhi, the Lotus Temple is an edifice dedicated to the Baha'i faith. The magnificent structure of this building unfolds in the form of a stupendous white petal lotus and is one of the most visited establishments in the world. The design of this shrine was conceptualized by Canadian architect Fariborz Sahba and was completed in the year 1986. This temple seeks to propagate the oneness of the Almighty and is open to all regardless of their nationality, religion, race or gender. The Lotus temple is one of the seven Baha'i House of Worship present around the world.
As you enter the complex of the temple, you encounter an enchanting entrance gate, beautiful floral gardens and scintillating pools. The pathway leading up to the temple doors is lined with lush green shrubs and a feeling of tranquillity adorns the atmosphere despite the bubbling crowd. Once inside, the mesmerising architecture will lull you into an introspective silence. You can read and chant religious texts of any faith, and musical renditions of religious texts can be sung without any inhibitions in the temple complex. The Bahai Lotus Temple is without a doubt one of the must-visit places in the capital. Not just for its marvellous architecture but also to experience a new way of meditation in a completely different, blissful ambience.
</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;">qutub
<span style="color: #e2b13c; text-transform: uppercase;">minar</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;">
Qutub Minar is a minaret or a victory tower located in Qutub complex, a UNESCO World Heritage Site in Delhi's Mehrauli area. With the height of 72.5 metres (238 ft), Qutub Minar is the second tallest monument of Delhi. Its construction was started in 1192 by Qutb Ud-Din-Aibak, founder of Delhi Sultanate after he defeated the last Hindu Ruler of Delhi. He constructed the basement, after which the construction was taken over by his son-in-law and successor Iltutmish who constructed three additional stories. The fourth and fifth storeys were built by Firoz Shah Tuglak.
</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>