-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblogs.html
More file actions
550 lines (356 loc) · 20.5 KB
/
Copy pathblogs.html
File metadata and controls
550 lines (356 loc) · 20.5 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="blogs.css">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
</head>
<body>
<header>
<div class="container">
<nav>
<div class="logo-container">
<div class="logo-row">
<h1 class="logo-text">EXPLRit</h1>
<img src="explritlogo2.png" alt="ExplrIt Company Logo" class="header-logo">
</div>
<p class="tagline">Explore Beyond Limits</p>
</div>
<ul class="menu">
<li class="item"><a href="index.html" class="navlink"><b>Home</b></a></li>
<li class="item"><a href="destinations.html" class="navlink"><b>Destinations</b></a></li>
<li class="item"><a href="package.html" class="navlink"><b>Packages</b></a></li>
<li class="item"><a href="blogs.html" class="navlink"><b>Blogs</b></a></li>
</ul>
</nav>
</div>
</header>
<!-- Blog -->
<div class="blog-hero">
<div class="blog-hero-content">
<h1 class="blog-hero-title">Travel Insights & Tips</h1>
<p class="blog-hero-subtitle">Discover expert advice, destination guides, and travel stories to inspire your next adventure</p>
</div>
</div>
<!-- Popular Destinations Carousel -->
<div class="destinations-carousel">
<div class="container">
<h2 class="carousel-title">Popular Destinations</h2>
<div class="carousel-container">
<div class="carousel-item">
<img src="blog1.avif" alt="Bali" class="carousel-img">
<div class="carousel-content">
<h3>Bali, Indonesia</h3>
<p>Island paradise with beautiful beaches and temples</p>
</div>
</div>
<div class="carousel-item">
<img src="" alt="Paris" class="carousel-img">
<div class="carousel-content">
<h3>Paris, France</h3>
<p>The city of lights and romance</p>
</div>
</div>
<div class="carousel-item">
<img src="blog3.avif" alt="Santorini" class="carousel-img">
<div class="carousel-content">
<h3>Santorini, Greece</h3>
<p>Stunning views and iconic blue domes</p>
</div>
</div>
<div class="carousel-item">
<img src="blog4.avif" alt="Maldives" class="carousel-img">
<div class="carousel-content">
<h3>Maldives</h3>
<p>Crystal clear waters and overwater bungalows</p>
</div>
</div>
<div class="carousel-item">
<img src="slide5.avif" alt="Tokyo" class="carousel-img">
<div class="carousel-content">
<h3>Tokyo, Japan</h3>
<p>Vibrant city blending tradition and innovation</p>
</div>
</div>
<div class="carousel-item">
<img src="blog5.avif" alt="Italy" class="carousel-img">
<div class="carousel-content">
<h3>Rome, Italy</h3>
<p>Historic city with incredible architecture</p>
</div>
</div>
</div>
</div>
</div>
<!-- Blog Filter -->
<div class="blog-filter">
<div class="container">
<div class="filter-container">
<div class="search-bar">
<input type="text" placeholder="Search blogs...">
<button><i class="fas fa-search"></i></button>
</div>
<div class="category-filter">
<button class="filter-btn active">All</button>
<button class="filter-btn">Tips</button>
<button class="filter-btn">Destinations</button>
<button class="filter-btn">Stories</button>
<button class="filter-btn">Guides</button>
</div>
</div>
</div>
</div>
<!-- Feature -->
<div class="container">
<div class="featured-post">
<img src="fea1.avif" alt="Featured Post" class="featured-img">
<div class="featured-content"> <span class="featured-badge">Featured</span>
<div class="blog-meta">
<span class="blog-date"><i class="far fa-calendar"></i> September 12, 2025</span>
<span class="blog-author"><i class="far fa-user"></i> Sarah Johnson</span>
</div>
<h2 class="blog-title">10 Hidden Gems in Southeast Asia You Must Visit</h2>
<p class="blog-excerpt">Discover breathtaking destinations off the beaten path that offer authentic cultural experiences without the crowds of tourists.</p>
<div class="read-time">
<i class="far fa-clock"></i> 8 min read
</div>
<a href="#" class="btn">Read Full Article</a>
</div>
</div>
</div>
<!-- Blogs -->
<div id="blogs" class="section">
<div class="container">
<h2 class="section-title">Travel Blogs & Tips</h2>
<div class="blog-grid">
<div class="blog-card">
<span class="featured-badge">Popular</span>
<img src="fea2" alt="Packing Tips" class="card-img">
<div class="blog-content">
<div class="blog-meta">
<span class="blog-date"><i class="far fa-calendar"></i> September 5, 2025</span>
<span class="blog-author"><i class="far fa-user"></i> Admin</span>
</div>
<h3 class="blog-title">10 Essential Packing Tips for Every Traveler</h3>
<p class="blog-excerpt">Learn how to pack efficiently and make the most of your luggage space without sacrificing essentials.</p>
<div class="read-time">
<i class="far fa-clock"></i> 5 min read
</div>
<div class="blog-tags">
<span class="blog-tag">Packing</span>
<span class="blog-tag">Tips</span>
</div>
<a href="#" class="btn">Read More</a>
</div>
</div>
<div class="blog-card">
<img src="fea3.avif" alt="Budget Travel" class="card-img">
<div class="blog-content">
<div class="blog-meta">
<span class="blog-date"><i class="far fa-calendar"></i> August 22, 2025</span>
<span class="blog-author"><i class="far fa-user"></i> Admin</span>
</div>
<h3 class="blog-title">How to Travel on a Budget Without Compromising Experience</h3>
<p class="blog-excerpt">Discover smart strategies to make your travel dreams affordable while still having incredible experiences.</p>
<div class="read-time">
<i class="far fa-clock"></i> 7 min read
</div>
<div class="blog-tags">
<span class="blog-tag">Budget</span>
<span class="blog-tag">Tips</span>
</div>
<a href="#" class="btn">Read More</a>
</div>
</div>
<div class="blog-card">
<span class="featured-badge">New</span>
<img src="fea4.avif" alt="Hidden Gems" class="card-img">
<div class="blog-content">
<div class="blog-meta">
<span class="blog-date"><i class="far fa-calendar"></i> August 10, 2025</span>
<span class="blog-author"><i class="far fa-user"></i> Admin</span>
</div>
<h3 class="blog-title">Hidden Gems: Off-the-Beaten-Path Destinations You Must Visit</h3>
<p class="blog-excerpt">Explore less crowded but equally breathtaking destinations that most tourists haven't discovered yet.</p>
<div class="read-time">
<i class="far fa-clock"></i> 6 min read
</div>
<div class="blog-tags">
<span class="blog-tag">Destinations</span>
<span class="blog-tag">Adventure</span>
</div>
<a href="#" class="btn">Read More</a>
</div>
</div>
<div class="blog-card">
<img src="fea5.avif" alt="Travel Photography" class="card-img">
<div class="blog-content">
<div class="blog-meta">
<span class="blog-date"><i class="far fa-calendar"></i> July 28, 2025</span>
<span class="blog-author"><i class="far fa-user"></i> Admin</span>
</div>
<h3 class="blog-title">Travel Photography: Capturing Memories Like a Pro</h3>
<p class="blog-excerpt">Essential tips and techniques for taking stunning travel photos that tell the story of your journey.</p>
<div class="read-time">
<i class="far fa-clock"></i> 9 min read
</div>
<div class="blog-tags">
<span class="blog-tag">Photography</span>
<span class="blog-tag">Tips</span>
</div>
<a href="#" class="btn">Read More</a>
</div>
</div>
<div class="blog-card">
<img src="fea6.avif" alt="Solo Travel" class="card-img">
<div class="blog-content">
<div class="blog-meta">
<span class="blog-date"><i class="far fa-calendar"></i> July 15, 2025</span>
<span class="blog-author"><i class="far fa-user"></i> Admin</span>
</div>
<h3 class="blog-title">The Ultimate Guide to Solo Travel: Safety and Enjoyment</h3>
<p class="blog-excerpt">Everything you need to know about traveling alone safely while making the most of your solo adventure.</p>
<div class="read-time">
<i class="far fa-clock"></i> 10 min read
</div>
<div class="blog-tags">
<span class="blog-tag">Solo Travel</span>
<span class="blog-tag">Safety</span>
</div>
<a href="#" class="btn">Read More</a>
</div>
</div>
<div class="blog-card">
<span class="featured-badge">Trending</span>
<img src="fea7.avif" alt="Local Cuisine" class="card-img">
<div class="blog-content">
<div class="blog-meta">
<span class="blog-date"><i class="far fa-calendar"></i> June 30, 2025</span>
<span class="blog-author"><i class="far fa-user"></i> Admin</span>
</div>
<h3 class="blog-title">A Food Lover's Guide to Exploring Local Cuisines</h3>
<p class="blog-excerpt">How to discover and enjoy authentic local foods while traveling to enhance your cultural experience.</p>
<div class="read-time">
<i class="far fa-clock"></i> 8 min read
</div>
<div class="blog-tags">
<span class="blog-tag">Food</span>
<span class="blog-tag">Culture</span>
</div>
<a href="#" class="btn">Read More</a>
</div>
</div>
</div>
<!-- Pagination -->
<div class="pagination">
<a href="#" class="pagination-item active">1</a>
<a href="#" class="pagination-item">2</a>
<a href="#" class="pagination-item">3</a>
<a href="#" class="pagination-item">4</a>
<a href="#" class="pagination-item">></a>
</div>
</div>
</div>
<!-- Testimonials Section -->
<section class="testimonials">
<div class="container">
<h2 class="section-title" style="color: white;">What Our Readers Say</h2>
<div class="testimonial-grid">
<div class="testimonial-card">
<p class="testimonial-text">"The packing tips from EXPLRit completely transformed how I prepare for trips. I can now travel for weeks with just a carry-on!"</p>
<div class="testimonial-author">
<img src="trav7.jpg" alt="User" class="author-img">
<div class="author-details">
<h4>Jessica Miller</h4>
<p>Frequent Traveler</p>
</div>
</div>
</div>
<div class="testimonial-card">
<p class="testimonial-text">"I've been following EXPLRit's blog for years. Their destination guides are always spot-on and help me discover amazing places."</p>
<div class="testimonial-author">
<img src="trav2" alt="User" class="author-img">
<div class="author-details">
<h4>Michael Chen</h4>
<p>Adventure Seeker</p>
</div>
</div>
</div>
<div class="testimonial-card">
<p class="testimonial-text">"The solo travel guide gave me the confidence to take my first solo trip. Now I've visited 15 countries on my own!"</p>
<div class="testimonial-author">
<img src="trav3" alt="User" class="author-img">
<div class="author-details">
<h4>Sarah Johnson</h4>
<p>Solo Traveler</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Newsletter Section -->
<section class="newsletter-section">
<div class="container">
<div class="newsletter-container">
<h2>Never Miss a Travel Tip</h2>
<p>Subscribe to our blog newsletter and get the latest travel insights delivered to your inbox</p>
<form class="newsletter-form">
<input type="email" class="newsletter-input" placeholder="Enter your email address">
<button type="submit" class="newsletter-btn">Subscribe</button>
</form>
</div>
</div>
</section>
<footer>
<div class="footercontainer">
<div class="footersection">
<h3>About EXPLRit</h3>
<p>We are dedicated to providing exceptional travel experiences with carefully crafted packages and personalized service.</p>
<div class="sociallinks">
<a href="https://facebook.com/yourpage"><i class="fab fa-facebook-f"></i></a>
<a href="https://twitter.com/yourprofile"><i class="fab fa-twitter"></i></a>
<a href="https://instagram.com/yourprofile"><i class="fab fa-instagram"></i></a>
<a href="https://linkedin.com/in/yourprofile"><i class="fab fa-linkedin-in"></i></a>
<a href="https://youtube.com/yourchannel"><i class="fab fa-youtube"></i></a>
</div>
</div>
<div class="footersection">
<h3>Quick Links</h3>
<ul class="footerlinks">
<li><a href="index.html">Home</a></li>
<li><a href="destinations.html">Destinations</a></li>
<li><a href="package.html">Packages</a></li>
<li><a href="blogs.html">Blogs</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
<div class="footersection">
<h3>Contact Us</h3>
<ul class="footerlinks">
<li>Nizamuddinpura, Behind electricity division office 2</li>
<li>Varanasi, Uttar Pradesh 221002</li>
<li>Phone: +1 (555) 123-4567</li>
<li>Email: info@explrit.com</li>
<li>Fax: +1 (555) 765-4321</li>
</ul>
</div>
<div class="footersection">
<h3>Newsletter</h3>
<p>Subscribe to our newsletter for travel tips and exclusive offers.</p>
<form>
<input type="email" placeholder="Enter your email">
<button type="submit" class="btn">Subscribe</button>
</form>
</div>
<div class="footercopyright">
<p>© 2025 EXPLRit. All rights reserved.</p>
</div>
</div>
</footer>
</body>
</html>