-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathguide.html
More file actions
45 lines (42 loc) · 1.27 KB
/
guide.html
File metadata and controls
45 lines (42 loc) · 1.27 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>Guides — 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">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" class="active">Guides</a>
<a href="editor.html">Editor</a>
</div>
<a href="contact.html">Contact</a>
</div>
</nav>
</div>
</header>
<main class="container guide-listing">
<h1>Local Guides</h1>
<p>Meet local experts who can show you Kudla's best spots.</p>
<div id="guides-grid" class="grid"></div>
</main>
<footer class="site-footer container">
<p>© Namma Kudla</p>
</footer>
<script src="app.js"></script>
</body>
</html>