-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathdelhi.html
More file actions
421 lines (402 loc) · 12.3 KB
/
delhi.html
File metadata and controls
421 lines (402 loc) · 12.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Delhi - One Stop Guide</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Poppins:wght@600&display=swap" rel="stylesheet" />
<style>
:root {
--primary-bg: #161d27;
--secondary-bg: #232b39;
--accent: #bb734b;
--accent-light: #b36a3d;
--text-main: #e8ce9f;
--text-secondary: #e8ce9f;
--muted: #d6cdf0;
--card-bg: #232b39;
--border: #232f42;
--gallery-hover: #a05529;
--error: #8d3033;
}
* {
margin: 0; padding: 0; box-sizing: border-box;
}
body {
font-family: 'Roboto','Poppins',sans-serif;
background: var(--primary-bg);
color: var(--text-main);
line-height: 1.7;
min-height: 100vh;
}
header {
background: var(--secondary-bg);
box-shadow: 0 1.5px 10px rgba(30,40,50,0.19);
padding: 0.55rem 0;
position: sticky;
top: 0;
z-index: 1000;
}
.header-container {
max-width: 1180px;
margin: auto;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 1.2rem;
}
.logo {
font-family: 'Poppins',sans-serif;
font-weight: 800;
font-size: 1.5rem;
color: var(--accent);
letter-spacing: 1px;
text-transform: uppercase;
padding: 0.18em 0.5em;
background: transparent;
border-radius: 6px;
transition: background 0.14s, color 0.16s;
cursor: pointer;
}
.logo:hover {
color: var(--accent-light);
background: var(--muted);
}
nav ul {
display: flex;
gap: 1.1rem; /* compact spacing */
list-style: none;
}
nav ul li a {
color: var(--text-main);
background: transparent;
text-decoration: none;
font-weight: 600;
font-size: 1rem;
padding: 0.35rem 0.90rem;
border-radius: 7px;
letter-spacing: 0.5px;
transition: background 0.16s, color 0.18s;
}
nav ul li a:hover,
nav ul li a.active {
background: var(--accent);
color: var(--primary-bg);
}
.hero {
display: flex;
flex-wrap: wrap;
align-items: stretch;
background: var(--card-bg);
border-radius: 18px;
max-width: 1200px;
margin: 2.3rem auto 3rem;
box-shadow: 0 14px 44px rgba(25,35,60,0.25);
overflow: hidden;
border: 1.5px solid var(--border);
}
.hero-img {
flex: 1 1 400px;
min-width: 320px;
max-height: 420px;
display: flex;
align-items: stretch;
background: linear-gradient(120deg, #22334d 35%, #294935 100%);
}
.hero-img img {
width: 100%;
height: 100%;
object-fit: cover;
filter: grayscale(0.09) contrast(1.08) brightness(0.95);
transition: filter 0.36s, transform 0.18s;
cursor: pointer;
}
.hero-img img:hover {
filter: none;
transform: scale(1.035);
}
.hero-content {
flex: 2 1 540px;
padding: 2.7rem 2.5rem 2.8rem 2.8rem;
display: flex;
flex-direction: column;
justify-content: center;
background: linear-gradient(135deg, rgba(19,30,41, 0.85) 65%, #232b39 100%);
}
.hero-content h1 {
font-family: 'Poppins',sans-serif;
font-size: 2.6rem;
color: var(--accent);
margin-bottom: 1.05rem;
font-weight: 800;
line-height: 1.1;
letter-spacing: -1px;
}
.hero-content p {
font-size: 1.15rem;
color: var(--text-secondary);
font-weight: 400;
margin-bottom: 1.7rem;
max-width: 580px;
letter-spacing: 0.01em;
}
.btn-primary {
background: var(--accent);
color: var(--primary-bg);
padding: 0.75rem 2.1rem;
font-size: 1.07rem;
border: none;
border-radius: 22px;
cursor: pointer;
font-weight: 700;
letter-spacing: 0.04em;
box-shadow: 0 4px 15px rgba(54, 226, 167, 0.09);
text-transform: uppercase;
transition: background 0.15s, color 0.16s, box-shadow 0.18s;
margin-top: 0.5rem;
}
.btn-primary:hover {
background: var(--accent-light);
color: var(--primary-bg);
box-shadow: 0 7px 18px var(--gallery-hover);
}
.more-info {
max-width: 780px;
margin: 2rem auto 4rem;
background: var(--card-bg);
padding: 2.1rem 2.8rem;
border-radius: 13px;
box-shadow: 0 7px 30px #11182566;
font-size: 1.10rem;
color: var(--text-secondary);
border-left: 6.5px solid var(--accent);
animation: fadeIn 0.8s ease both;
display: none;
}
@keyframes fadeIn {
from {opacity: 0; transform: translateY(18px);}
to {opacity: 1; transform: translateY(0);}
}
.delhi-gallery {
display: flex;
flex-wrap: wrap;
gap: 1.18rem;
max-width: 1000px;
margin: 2rem auto 2.7rem;
justify-content: center;
}
.delhi-gallery img {
width: 222px;
height: 146px;
object-fit: cover;
border-radius: 9px;
border: 2.5px solid var(--muted);
background: var(--secondary-bg);
box-shadow: 0 3px 13px rgba(50,210,170,0.09);
margin-bottom: 0.25rem;
filter: grayscale(0.18) brightness(0.93);
transition: transform 0.2s, box-shadow 0.15s, border 0.13s, filter 0.13s;
}
.delhi-gallery img:hover {
transform: scale(1.05) rotate(-2deg);
border-color: var(--accent);
box-shadow: 0 8px 30px var(--gallery-hover);
filter: none;
}
footer {
background: var(--secondary-bg);
color: var(--text-main);
padding: 2.2rem 1.2rem;
}
.footer-container {
max-width: 1170px;
margin: auto;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
gap: 2.5rem;
}
.footer-section {
flex: 1 1 180px;
}
.footer-section h3 {
font-family: 'Poppins',sans-serif;
font-weight: 700;
font-size: 1.08rem;
color: var(--accent);
margin-bottom: 1rem;
border-bottom: 2.5px solid var(--accent);
padding-bottom: 0.3rem;
}
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 0.6rem; }
.footer-links ul li a {
color: #c9a8c3;
text-decoration: none;
transition: color 0.14s;
font-weight: 500;
}
.footer-links ul li a:hover { color: var(--accent); }
.footer-contact p, .footer-contact a {
color: #c5d5da;
margin-bottom: 0.7rem;
display: block;
font-weight: 500;
text-decoration: none;
}
.footer-contact a:hover { color: var(--accent); }
.footer-bottom {
text-align: center;
margin-top: 2rem;
color: #8091a8;
font-style: italic;
font-size: 0.92rem;
}
@media (max-width: 900px) {
.hero { flex-direction: column; margin: 1.3rem auto 2rem; }
.hero-content { padding: 1.1rem 1.2rem; text-align: center;}
.ajmer-gallery img { width: 41vw; height: 26vw; min-width: 110px; min-height: 72px;}
.header-container { flex-direction: column; align-items: flex-start; }
nav ul { gap: 0.8rem; }
}
@media (max-width: 650px) {
.more-info, .hero-content { padding: 0.85rem 0.6rem !important; }
.hero-img { min-width: 120px; }
.footer-container { flex-direction: column; gap: 1.5rem;}
.logo { font-size: 1.09rem;}
}
</style>
</head>
<body>
<header>
<div class="header-container">
<div class="logo">One Stop Guide</div>
<nav>
<ul>
<li>
<li><a href="index.html">Ajmer</a></li>
<li><a href="ajmer.html">Ajmer</a></li>
<li><a href="sikar.html">Sikar</a></li>
<li><a href="kishangarh.html">Kishangarh</a></li>
<li><a href="laxmangarh.html">Laxmangarh</a></li>
<li><a href="kota.html">Kota</a></li>
<li><a href="fatehpur.html">Fatehpur</a></li>
<li><a href="jaipur.html">Jaipur</a></li>
<li><a href="pune.html">Pune</a></li>
<li><a href="kolkata.html">Kolkata</a></li>
<li><a href="aligarh.html" ></a>>Aligarh</a></li>
<li><a href="burdman.html">Burdman</a></li>
<li><a href="delhi.html" class="active">Delhi</a></li>
</ul>
</nav>
</div>
</header>
<section class="hero" aria-label="Delhi overview and image">
<div class="hero-img" role="img" aria-label="Image of India Gate, Delhi">
<img
src="images/india-delhi-red-fortmp4.jpg" width="100%"
alt="India Gate, Delhi"
id="delhiImg"
loading="lazy"
/>
</div>
<div class="hero-content">
<h1>Welcome to Delhi</h1>
<p>
Delhi is a city that never sleeps, a blend of ancient history and modern vibrancy. From the majestic Red Fort to the bustling markets of Chandni Chowk, Delhi offers a unique experience that captures the essence of India.
</p>
Discover Delhi, the vibrant capital of India, known for its rich history, iconic monuments like India Gate, Qutub Minar, Red Fort, and its bustling markets and diverse culture.
</p>
<button class="btn-primary" id="toggleMoreBtn" aria-expanded="false" aria-controls="moreInfoSection">
Show More
</button>
</div>
</section>
<section class="more-info" id="moreInfoSection" aria-hidden="true">
<p>
Delhi is a city that blends ancient traditions with modern living. Explore historic sites such as Humayun's Tomb, Lotus Temple, and Chandni Chowk’s lively bazaars. The city is also a hub for politics, education, and cuisine.
<br>
<strong>Things to do:</strong>
<ul>
<li>Visit the iconic India Gate and Red Fort</li>
<li>Explore the bustling markets of Chandni Chowk</li>
<li>Discover the rich history at Qutub Minar and Humayun's Tomb</li>
<li>Experience the spiritual ambiance at Lotus Temple</li>
<li>Enjoy the vibrant nightlife and diverse culinary scene</li>
</p>
<p>
Whether you’re visiting for culture, history, food, or business, Delhi offers a dynamic experience with something for everyone.
</p>
</section>
<div class ="delhi-gallery">
<h2>Delhi Gallery</h2>
<div class="gallery-images">
<img src="images/delhi1.jpg" alt="India Gate" />
<img src="images/delhi2.jpg" alt="Taj Mahal" />
<img src="images/delhi3.jpg" alt="Temple" />
</div>
</div>
<footer>
<div class="footer-container">
<div class="footer-section footer-links" aria-label="Explore cities links">
<h3>Explore Cities</h3>
<ul>
<li><a href="ajmer.html">Ajmer</a></li>
<li><a href="sikar.html">Sikar</a></li>
<li><a href="kishangarh.html">Kishangarh</a></li>
<li><a href="laxmangarh.html">Laxmangarh</a></li>
<li><a href="kota.html">Kota</a></li>
<li><a href="fatehpur.html">Fatehpur</a></li>
<li><a href="jaipur.html">Jaipur</a></li>
<li><a href="pune.html">Pune</a></li>
<li><a href="kolkata.html">Kolkata</a></li>
<li><a href="aligarh.html" >Aligarh</a></li>
<li><a href="burdman.html">Burdman</a></li>
<li><a href="delhi.html" aria-current="page">Delhi</a></li>
</ul>
</div>
<div class="footer-section footer-contact" aria-label="Contact information">
<h3>Contact Us</h3>
<p>Email: <a href="mailto:support@onestopguide.com">support@onestopguide.com</a></p>
<p>Phone: <a href="tel:+919876543210">+91-9876543210</a></p>
<p>
Follow us on:
<a href="#" aria-label="Facebook">Facebook</a>
<a href="#" aria-label="Twitter">Twitter</a>
<a href="#" aria-label="Instagram">Instagram</a>
</p>
</div>
</div>
<div class="footer-bottom">
© 2025 One Stop Guide | Created by Komal & Khushi
</div>
</footer>
<script>
const toggleBtn = document.getElementById('toggleMoreBtn');
const moreInfo = document.getElementById('moreInfoSection');
const img = document.getElementById('delhiImg');
toggleBtn.addEventListener('click', () => {
if (moreInfo.style.display === 'block') {
moreInfo.style.display = 'none';
toggleBtn.textContent = 'Show More';
toggleBtn.setAttribute('aria-expanded', 'false');
moreInfo.setAttribute('aria-hidden', 'true');
} else {
moreInfo.style.display = 'block';
toggleBtn.textContent = 'Show Less';
toggleBtn.setAttribute('aria-expanded', 'true');
moreInfo.setAttribute('aria-hidden', 'false');
}
});
img.addEventListener('click', () => {
if (img.style.transform === 'scale(1.2)') {
img.style.transform = 'scale(1)';
img.style.cursor = 'zoom-in';
} else {
img.style.transform = 'scale(1.2)';
img.style.cursor = 'zoom-out';
}
});
</script>
</body>
</html>