-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdestinations.html
More file actions
44 lines (41 loc) · 1.31 KB
/
destinations.html
File metadata and controls
44 lines (41 loc) · 1.31 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>Destinations — Namma Kudla</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header class="site-header">
<div class="container header-inner">
<a class="brand" href="index.html">Namma Kudla</a>
<nav class="nav">
<a href="index.html" >Home</a>
<a href="post.html">Blog</a>
<a href="destinations.html" class="active">Destinations</a>
<div class="dropdown">
<button class="dropbtn">Dashboard</button>
<div class="dropdown-content">
<a href="about.html">About</a>
<a href="stories.html">Stories</a>
<a href="maps.html">Maps</a>
<a href="community.html">Community</a>
<a href="guide.html">Guides</a>
</div>
</div>
<a href="contact.html">Contact</a>
</nav>
</div>
</header>
<main class="container">
<h1>Destinations</h1>
<p>Explore curated destination guides, local tips, and itineraries.</p>
<div id="destinations-grid" class="grid"></div>
</main>
<footer class="site-footer container">
<p>© Namma Kudla</p>
</footer>
<script src="app.js"></script>
</body>
</html>