-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbeaches.html
More file actions
57 lines (53 loc) · 1.72 KB
/
beaches.html
File metadata and controls
57 lines (53 loc) · 1.72 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Beaches | Namma Kudla</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="site-header">
<div class="container">
<h1>Namma Kudla – Food</h1>
<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">Guides</a>
<a href="editor.html">Editor</a>
</div>
<a href="contact.html">Contact</a>
</div>
</nav>
</div>
</header>
<section class="hero" style="background-image: url('beach.jpg');">
<div class="hero-text">
<h2>Discover Kudla’s Serene Beaches</h2>
<p>Golden sands, calm waves, and mesmerizing sunsets await you.</p>
</div>
</section>
<section class="content">
<h3>Top Beaches in Kudla</h3>
<ul>
<li>Panambur Beach – Perfect for water sports & evening strolls.</li>
<li>Tannirbavi Beach – Known for its clean coast and scenic sunsets.</li>
<li>Surathkal Beach – Features the iconic lighthouse and cliff views.</li>
</ul>
<div class="video-container">
<iframe src="https://www.youtube.com/embed/uPBIEkXQGK4?si=u96djr8mFzy2XXlV" allowfullscreen></iframe>
</div>
</section>
<footer>
<p>© 2025 Namma Kudla | Explore the coast responsibly.</p>
</footer>
</body>
</html>