forked from komalkhatod1105/One-Stop-Guide
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkishangarh.html
More file actions
348 lines (332 loc) · 10.2 KB
/
kishangarh.html
File metadata and controls
348 lines (332 loc) · 10.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Kishangarh - 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>
/* Reset & basics */
* {
margin: 0; padding: 0; box-sizing: border-box;
}
body {
font-family: 'Roboto', sans-serif;
background: #f6f8fa;
color: #1f2937;
line-height: 1.6;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* Header */
header {
background: #232f3e; /* Amazon navy dark */
padding: 1rem 3rem;
position: sticky;
top: 0;
z-index: 100;
box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.header-container {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
font-family: 'Poppins', sans-serif;
font-weight: 700;
font-size: 1.8rem;
color: #ff9900; /* Amazon orange */
cursor: pointer;
letter-spacing: 2px;
user-select: none;
}
nav ul {
display: flex;
gap: 2rem;
list-style: none;
}
nav ul li a {
color: #e1e1e1;
text-decoration: none;
font-weight: 600;
font-size: 1rem;
padding: 0.4rem 0.8rem;
border-radius: 4px;
transition: background 0.3s ease;
}
nav ul li a:hover,
nav ul li a.active {
background: #37475a;
color: #ff9900;
}
/* Hero section */
.hero {
max-width: 1200px;
margin: 3rem auto 5rem;
background: white;
border-radius: 12px;
box-shadow: 0 12px 30px rgba(0,0,0,0.1);
overflow: hidden;
display: flex;
flex-wrap: wrap;
align-items: center;
}
.hero-img {
flex: 1 1 500px;
max-height: 400px;
overflow: hidden;
}
.hero-img img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
cursor: pointer;
}
.hero-img img:hover {
transform: scale(1.05);
}
.hero-content {
flex: 1 1 500px;
padding: 3rem 3rem 3rem 4rem;
}
.hero-content h1 {
font-family: 'Poppins', sans-serif;
font-size: 2.8rem;
margin-bottom: 1rem;
color: #232f3e;
}
.hero-content p {
font-size: 1.2rem;
color: #4b5563;
margin-bottom: 2rem;
max-width: 550px;
font-weight: 500;
}
.btn-primary {
background: linear-gradient(90deg, #ff9900 0%, #ffb84d 100%);
border: none;
color: white;
padding: 1rem 2.8rem;
font-size: 1.1rem;
border-radius: 30px;
cursor: pointer;
font-weight: 700;
box-shadow: 0 4px 12px rgba(255,153,0,0.4);
transition: all 0.3s ease;
user-select: none;
letter-spacing: 0.05em;
text-transform: uppercase;
}
.btn-primary:hover {
background: linear-gradient(90deg, #cc7a00 0%, #ffa64d 100%);
box-shadow: 0 6px 15px rgba(204,122,0,0.6);
transform: translateY(-2px);
}
/* More info */
.more-info {
max-width: 700px;
margin: 2rem auto 5rem;
background: white;
padding: 2rem 3rem;
border-radius: 12px;
box-shadow: 0 8px 25px rgba(0,0,0,0.1);
font-size: 1.1rem;
color: #374151;
line-height: 1.7;
display: none;
animation: fadeIn 0.7s ease forwards;
}
@keyframes fadeIn {
from {opacity: 0; transform: translateY(15px);}
to {opacity: 1; transform: translateY(0);}
}
/* Footer */
footer {
background: #232f3e;
color: #cbd5e1;
padding: 3rem 1.5rem;
font-size: 0.9rem;
user-select: none;
}
.footer-container {
max-width: 1200px;
margin: auto;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
gap: 3rem;
}
.footer-section {
flex: 1 1 250px;
}
.footer-section h3 {
font-family: 'Poppins', sans-serif;
font-weight: 700;
font-size: 1.4rem;
color: #ff9900;
margin-bottom: 1rem;
border-bottom: 3px solid #ff9900;
padding-bottom: 0.5rem;
}
.footer-links ul {
list-style: none;
}
.footer-links ul li {
margin-bottom: 0.8rem;
}
.footer-links ul li a {
color: #cbd5e1;
text-decoration: none;
transition: color 0.3s ease;
font-weight: 500;
}
.footer-links ul li a:hover {
color: #ff9900;
}
.footer-contact p, .footer-contact a {
color: #cbd5e1;
margin-bottom: 0.7rem;
display: block;
font-weight: 500;
text-decoration: none;
}
.footer-contact a:hover {
color: #ff9900;
}
.footer-bottom {
text-align: center;
margin-top: 2rem;
color: #94a3b8;
font-style: italic;
font-size: 0.85rem;
}
/* Responsive */
@media (max-width: 900px) {
.hero {
flex-direction: column;
margin: 2rem auto 4rem;
}
.hero-content {
padding: 2rem 2rem 3rem 2rem;
text-align: center;
}
nav ul {
gap: 1rem;
}
}
</style>
</head>
<body>
<!-- HEADER -->
<header>
<div class="header-container">
<div class="logo">One Stop Guide</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="laxmangarh.html">Laxmangarh</a></li>
<li><a href="kota.html">Kota</a></li>
<li><a href="delhi.html">Delhi</a></li>
<li><a href="fatehpur.html">Fatehpur</a></li>
<li><a href="sikar.html" class="active">Sikar</a></li>
<li><a href="ratangarh.html">Ratangarh</a></li>
<li><a href="ajmer.html">Ajmer</a></li>
</ul>
</nav>
</div>
</header>
<!-- HERO SECTION -->
<section class="hero" aria-label="Kishangarh overview and image">
<div class="hero-img" role="img" aria-label="Image of Kishangarh city with historic buildings and landscapes">
<img
src="https://media.assettype.com/knocksense%2Fimport%2F25982931%2Forigin.jpg?w=1200&auto=format%2Ccompress&fit=max"
alt="Kishangarh cityscape"
id="kishangarhImg"
loading="lazy"
/>
</div>
<div class="hero-content">
<h1>Welcome to Kishangarh</h1>
<p>
Discover the enchanting Marble City of India — a vibrant blend of rich Rajputana heritage, exquisite arts, and thriving industries. Explore majestic forts, serene lakes, and the world-renowned Bani Thani paintings while immersing yourself in a warm and welcoming culture.
</p>
<button class="btn-primary" id="toggleMoreBtn" aria-expanded="false" aria-controls="moreInfoSection">
Show More
</button>
</div>
</section>
<!-- MORE INFO -->
<section class="more-info" id="moreInfoSection" aria-hidden="true">
<p>
Kishangarh is famous for its historic Kishangarh Fort and the Phool Mahal Palace. The city is a major hub for marble processing, hosting Asia's largest marble market. Art lovers can admire the distinctive "Bani Thani" miniature paintings, showcasing elegant features and delicate details unique to this region.
</p>
<p>
With excellent connectivity to nearby Ajmer and Rajasthan's other cultural gems, Kishangarh offers a perfect mix of tradition and modern development. Whether you are a traveler, art enthusiast, or business visitor, Kishangarh welcomes you with open arms.
</p>
</section>
<!-- FOOTER -->
<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" aria-current="page">Kishangarh</a></li>
<li><a href="laxmangarh.html">Laxmangarh</a></li>
<li><a href="kota.html">Kota</a></li>
<li><a href="delhi.html">Delhi</a></li>
<li><a href="fatehpur.html">Fatehpur</a></li>
<li><a href="ratangarh.html">Ratangarh</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('kishangarhImg');
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');
}
});
// Image zoom on click
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>