-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblogs.html
70 lines (64 loc) · 2.65 KB
/
blogs.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Abroad</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="css files\blogs.css">
<script src="https://kit.fontawesome.com/038378b7e0.js" crossorigin="anonymous"></script>
</head>
<body>
<nav>
<div class="title">
<a href="index.html">abroad</a>
</div>
<div id="two-nav-blocks">
<div class="nav-sections">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="destinations.html">Destination</a></li>
<li><a href="blogs.html">Blogs</a></li>
<li><a href="faq.html">FAQs</a></li>
</ul>
</div>
</div>
</nav>
<main>
<section>
<div class="title-container">
<h2>Travel Blogs</h2>
<p>Explore tips, stories, and travel adventures from around the globe.</p>
</div>
<div class="blog-grid">
<div class="blog-card">
<img src="images/AdventureDestinationsF.jpg" alt="blog1">
<h4>Top 10 Destinations for all Adventure Seekers</h4>
<p>Embark on a thrilling journey to these breathtaking spots...</p>
<a href="blog1detail.html" class="read-more" data-article-id="blog1">Read More</a>
</div>
<div class="blog-card">
<img src="images/Paris_foodie3.png" alt="blog2">
<h4>A Foodie's Guide to Paris</h4>
<p>Discover the best culinary spots and must-try dishes in Paris.</p>
<a href="blog2detail.html" class="read-more" data-article-id="blog2">Read More</a>
</div>
<div class="blog-card">
<img src="images/blog3.jpg" alt="blog3">
<h4>Beautiful Responsible Tourism Destinations</h4>
<p>Want to travel the world without harming the enviroment? Here's where to go!</p>
<a href="blog3detail.html" class="read-more" data-article-id="blog3">Read More</a>
</div>
</div>
</section>
</main>
<footer>
<div class="footer-content">
<p>© 2024 All Rights Reserved.</p>
</div>
</footer>
<script src="JS files\blogs.js" ></script>
</body>
</html>