forked from komalkhatod1105/One-Stop-Guide
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindx.html
More file actions
383 lines (360 loc) · 11.6 KB
/
Copy pathindx.html
File metadata and controls
383 lines (360 loc) · 11.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>One Stop Guide</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet"/>
<script src="https://kit.fontawesome.com/a076d05399.js" crossorigin="anonymous"></script>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
scroll-behavior: smooth;
font-family: 'Poppins', sans-serif;
}
body {
background: linear-gradient(to right, #fcb69f, #ffecd2);
color: #333;
padding: 20px;
}
nav {
background-color: #fff;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
padding: 15px 30px;
display: flex;
justify-content: space-between;
align-items: center;
border-radius: 10px;
}
nav h2 {
color: #ff4b2b;
}
nav ul {
list-style: none;
display: flex;
gap: 20px;
}
nav ul li a {
text-decoration: none;
color: #333;
font-weight: 600;
}
header {
text-align: center;
padding: 30px 0;
animation: fadeInDown 1s ease;
}
header h1 {
font-size: 3rem;
color: #ff4b2b;
}
@keyframes fadeInDown {
from { opacity: 0; transform: translateY(-30px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
from { opacity: 0; transform: scale(0.95); }
to { opacity: 1; transform: scale(1); }
}
.city-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
margin-top: 40px;
animation: fadeIn 1.5s ease;
}
.city-card {
background: #fff;
border-radius: 20px;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
padding: 20px;
text-align: center;
transition: 0.3s ease;
}
.city-card:hover {
transform: scale(1.05);
}
.city-card img {
width: 100%;
height: 160px;
object-fit: cover;
border-radius: 15px;
margin-bottom: 15px;
}
.city-card h2 {
margin-bottom: 10px;
font-size: 1.5rem;
color: #ff4b2b;
}
.city-card p {
font-size: 0.9rem;
margin-bottom: 10px;
}
.special-content {
font-size: 0.8rem;
color: #777;
margin-bottom: 15px;
}
.explore-btn {
background-color: #ff4b2b;
color: white;
border: none;
padding: 10px 20px;
border-radius: 30px;
cursor: pointer;
font-size: 1rem;
display: inline-flex;
align-items: center;
gap: 8px;
position: relative;
overflow: hidden;
transition: background 0.3s ease;
}
.explore-btn i {
animation: floatIcon 1.5s infinite alternate;
}
.explore-btn::after {
content: "";
position: absolute;
width: 200%;
height: 200%;
top: 0;
left: -100%;
background: rgba(255, 255, 255, 0.2);
transform: rotate(45deg);
transition: left 0.5s;
}
.explore-btn:hover::after {
left: 100%;
}
.explore-btn:hover {
background-color: #e03e20;
}
footer {
margin-top: 60px;
background-color: #fff;
padding: 40px 20px;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
animation: fadeInUp 2s ease;
}
.footer-container {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
gap: 30px;
margin-bottom: 30px;
}
.footer-section h3 {
color: #ff4b2b;
margin-bottom: 10px;
font-size: 1.2rem;
}
.footer-section ul {
list-style: none;
padding-left: 0;
}
.footer-section ul li {
margin-bottom: 8px;
}
.footer-section ul li a {
text-decoration: none;
color: #333;
font-size: 0.95rem;
transition: color 0.3s;
}
.footer-section ul li a:hover {
color: #d47e6f;
}
.made-by {
text-align: center;
font-weight: bold;
font-size: 1rem;
}
.komal-name {
background: linear-gradient(to right, #ff416c, #ff4b2b);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-weight: 700;
font-size: 1.1rem;
animation: colorPulse 2s infinite;
}
.footer-bottom-links {
text-align: center;
margin-top: 10px;
}
.footer-bottom-links a {
color: #ff4b2b;
margin: 0 10px;
font-size: 0.9rem;
text-decoration: none;
transition: transform 0.3s;
}
.footer-bottom-links a:hover {
text-decoration: underline;
transform: scale(1.1);
}
@keyframes colorPulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.6; }
}
@keyframes floatIcon {
from { transform: translateY(0px); }
to { transform: translateY(-3px); }
}
@keyframes fadeInUp {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
</style>
</head>
<body>
<nav>
<h2>One Stop Guide</h2>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Jobs</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">About</a></li>
</ul>
</nav>
<header>
<h1>Explore Your Favourite Cities</h1>
</header>
<div class="city-grid">
<!-- Repeatable City Cards -->
<!-- Common City Card Template -->
<div class="city-card">
<img src="https://images.herzindagi.info/image/2018/Dec/visit-ajmer-this-weekend.jpg" alt="Ajmer" />
<h2>Ajmer</h2>
<p>Ajmer is known for Ajmer Sharif Dargah and Ana Sagar Lake.</p>
<div class="special-content">Try boat rides and shop at Dargah Bazaar.</div>
<button class="explore-btn" onclick="openMap('Ajmer')">
<i class="fas fa-map-marker-alt"></i> Explore
</button>
</div>
<div class="city-card">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRsYyTWzmlovQiOVlLCctaV6UXhFY379suYew&s" alt="Sikar" />
<h2>Sikar</h2>
<p>Sikar is famous for its historic forts and education hubs.</p>
<div class="special-content">Visit Biyani College and Radhakishan Mandir.</div>
<button class="explore-btn" onclick="openMap('Sikar')">
<i class="fas fa-map-marker-alt"></i> Explore
</button>
</div>
<div class="city-card">
<img src="https://media.assettype.com/knocksense%2Fimport%2F25982931%2Forigin.jpg?w=1200&auto=format%2Ccompress&fit=max" alt="Kishangarh" />
<h2>Kishangarh</h2>
<p>Kishangarh is known for Phool Mahal and marble industry.</p>
<div class="special-content">Explore Asia’s largest marble market.</div>
<button class="explore-btn" onclick="openMap('Kishangarh')">
<i class="fas fa-map-marker-alt"></i> Explore
</button>
</div>
<div class="city-card">
<img src="https://st2.indiarailinfo.com/kjfdsuiemjvcya0/0/9/8/3/673983/0/3.jpg" alt="Laxmangarh" />
<h2>Laxmangarh</h2>
<p>Laxmangarh is a calm town with beautiful temples.</p>
<div class="special-content">Discover Ghanta Ghar and local traditions.</div>
<button class="explore-btn" onclick="openMap('Laxmangarh')">
<i class="fas fa-map-marker-alt"></i> Explore
</button>
</div>
<div class="city-card">
<img src="https://i.ytimg.com/vi/9xIyFlQ2moA/hq720.jpg" alt="Kota" />
<h2>Kota</h2>
<p>Kota is known for coaching centers and Chambal River.</p>
<div class="special-content">Visit 7 Wonders Park and enjoy riverside walks.</div>
<button class="explore-btn" onclick="openMap('Kota')">
<i class="fas fa-map-marker-alt"></i> Explore
</button>
</div>
<div class="city-card">
<img src="https://cdn.britannica.com/20/189820-050-D650A54D/Red-Fort-Old-Delhi-India.jpg?w=300" alt="India Gate in Delhi"/>
<h2>Delhi</h2>
<p>Delhi is India’s capital, rich with historic monuments.</p>
<div class="special-content">Visit India Gate, Red Fort & taste local street food.</div>
<button class="explore-btn" onclick="openMap('Delhi')">
<i class="fas fa-map-marker-alt"></i> Explore
</button>
</div>
<div class="city-card">
<img src="https://upload.wikimedia.org/wikipedia/commons/b/b5/Fatehput_Sikiri_Buland_Darwaza_gate_2010.jpg" alt="Fatehpur" />
<h2>Fatehpur</h2>
<p>Fatehpur is known for painted havelis and Shekhawati art.</p>
<div class="special-content">Visit Nadine Le Prince Haveli and enjoy local art.</div>
<button class="explore-btn" onclick="openMap('Fatehpur Rajasthan')">
<i class="fas fa-map-marker-alt"></i> Explore
</button>
</div>
<div class="city-card">
<img src="https://dynamic-media-cdn.tripadvisor.com/media/photo-o/17/de/b1/a4/sethani-ka-johara-sethani.jpg?w=1200&h=1200&s=1" alt="Ratangarh" />
<h2>Ratangarh</h2>
<p>Ratangarh offers forts, clock towers, and cultural charm.</p>
<div class="special-content">Walk old streets, explore heritage havelis.</div>
<button class="explore-btn" onclick="openMap('Ratangarh Rajasthan')">
<i class="fas fa-map-marker-alt"></i> Explore
</button>
</div>
<!-- Add other cities (Sikar, Kishangarh, Laxmangarh, Kota) here similarly -->
<!-- ... -->
</div>
<footer>
<div class="footer-container">
<div class="footer-section">
<h3>Get to Know Us</h3>
<ul>
<li><a href="#">About One Stop Guide</a></li>
<li><a href="#">Privacy Policy</a></li>
<li><a href="#">Terms & Conditions</a></li>
<li><a href="#">Help Center</a></li>
<li><a href="#">City Submission Form</a></li>
<li><a href="#">Press & Media</a></li>
<li><a href="#">Careers</a></li>
<li><a href="#">Blog</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Explore Cities</h3>
<ul>
<li><a href="ajmer.html" target="_blank">Ajmer</a></li>
<li><a href="sikar.html" target="_blank">Sikar</a></li>
<li><a href="kishangarh.html" target="_blank">Kishangarh</a></li>
<li><a href="laxmangarh.html" target="_blank">Laxmangarh</a></li>
<li><a href="kota.html" target="_blank">Kota</a></li>
<li><a href="delhi.html" target="_blank">Delhi</a></li>
<li><a href="fatehpur.html" target="_blank">Fatehpur</a></li>
<li><a href="ratangarh.html" target="_blank">Ratangarh</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Connect with Us</h3>
<ul>
<li><a href="mailto:komalkhatod1234@gmail.com"><i class="fas fa-envelope"></i> Email</a></li>
<li><a href="https://www.linkedin.com/in/komal-khatod-9b419a265" target="_blank"><i class="fab fa-linkedin"></i> LinkedIn</a></li>
<li><a href="https://github.com/komalkhatod1105" target="_blank"><i class="fab fa-github"></i> GitHub</a></li>
<li><a href="https://twitter.com/" target="_blank"><i class="fab fa-twitter"></i> Twitter</a></li>
<li><a href="https://www.instagram.com/" target="_blank"><i class="fab fa-instagram"></i> Instagram</a></li>
<li><a href="tel:+918824778262"><i class="fas fa-phone"></i> Call Us</a></li>
</ul>
</div>
</div>
<p class="made-by">
Made by <span class="komal-name">Komal Khatod & Khushi Poonia</span> | © 2025 One Stop Guide
</p>
<div class="footer-bottom-links">
<a href="#">Privacy</a> |
<a href="#">Terms</a> |
<a href="#">Back to Top ↑</a>
</div>
</footer>
<script>
function openMap(city) {
const mapUrl = `https://www.google.com/maps/search/${city}+Rajasthan`;
window.open(mapUrl, "_blank");
}
</script>
</body>
</html>