-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
100 lines (95 loc) · 4.6 KB
/
index.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nigerian Travel Blog</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav>
<div class="logo">
<img src="https://i.pinimg.com/736x/7c/b5/e5/7cb5e51817daef6d8194ea98f37772ea.jpg" alt="Logo">
</div>
<ul class="nav-links">
<li><a href="http://127.0.0.1:5500/.vscode/index.html">Home</a></li>
<li><a href="http://127.0.0.1:5500/.vscode/aboutus.html">About Us</a></li>
<li class="dropdown">
<a href="#">Featured Destinations</a>
<div class="dropdown-content">
<a href="http://127.0.0.1:5500/.vscode/Michigan.html">Michigan</a>
<a href="http://127.0.0.1:5500/.vscode/pr.html">Puerto Rico</a>
<a href="http://127.0.0.1:5500/.vscode/Chicago.html">Chicago</a>
</div>
</li>
<li><a href="http://127.0.0.1:5500/.vscode/Travel-Tips.html#">Travel Tips</a></li>
<li><a href="http://127.0.0.1:5500/.vscode/contact.html">Contact Us</a></li>
</ul>
</nav>
</header>
<main>
<section class="hero" style="background-image: url('https://media.baamboozle.com/uploads/images/285238/1652962835_6688277_url.gif');">
<div class="hero-text">
<h1>Welcome to Nigerian Travel Blog</h1>
<p>Explore the beauty of Nigeria's landscapes and culture</p>
</div>
</section>
<section class="destination">
<h2>Quick Travel Tips</h2>
<div class="destination-grid">
<div class="destination-item">
<img src="https://pbs.twimg.com/media/EXQs4ABWoAIR2X6.jpg" alt="Ikogosi Waterfall and Warm Springs">
<h3>Ikogosi Waterfall and Warm Springs</h3>
</div>
<div class="destination-item">
<img src="https://cdn.sanity.io/images/rizm0do5/production/c40826c30fa5b714167e04ccc4726d339c5ccde2-2560x1920.jpg?rect=0,97,2560,1725&w=690&h=465&q=80&fit=clip&auto=format" alt="Freedom Park Lagos, Nigeria">
<h3>Freedom Park Lagos, Nigeria</h3>
</div>
<div class="destination-item">
<img src="https://media.tacdn.com/media/attractions-splice-spp-674x446/0a/81/9b/2c.jpg" alt="7-hour Journey through Lagos" style="align-self: center;">
<h3 style="align-self: center;">7-hour Journey through Lagos</h3>
</div>
<div class="destination-item">
<img src="https://img.freepik.com/premium-photo/beautiful-young-tourist-sitting-chair-writing-record-travel-notebook-international-airport_35977-997.jpg" alt="Travel Tips">
<h3>Planning and Preparing for Nigeria: Tips for Travel</h3>
</div>
</div>
</section>
<section class="columns">
<div class="column" style="background-color: #2ecc71;">
<h2>Nigerian Delicacies</h2>
<p>Explore the diverse and flavorful cuisine of Nigeria. From savory soups to spicy stews, discover the unique flavors that make Nigerian food a culinary delight.</p>
</div>
<div class="column" style="background-color: #3498db;">
<h2>Local Cuisine</h2>
<p>Indulge in traditional Nigerian delicacies such as Jollof Rice, Suya, and Pounded Yam. These dishes are rich in flavor and reflect the vibrant culture of Nigeria.</p>
</div>
<div class="column" style="background-color: #9b59b6;">
<h2>Street Food</h2>
<p>Experience the bustling street food scene in Nigeria. From roadside vendors selling grilled meats to local snacks like Chin Chin and Akara, there's something for every food lover to enjoy.</p>
</div>
</section>
</main>
<footer>
<nav>
<ul class="nav-links">
<li><a href="#">Home</a></li>
<li><a href="#">About Us</a></li>
<li class="dropdown">
<a href="#">Featured Destinations</a>
<div class="dropdown-content">
<a href="#">Michigan</a>
<a href="#">Nigeria</a>
<a href="#">Puerto Rico</a>
<a href="#">Chicago</a>
</div>
</li>
<li><a href="http://127.0.0.1:5500/.vscode/Travel-Tips.html#">Travel Tips</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
</nav>
</footer>
<script src="script.js"></script>
</body>
</html>