-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemples.html
More file actions
53 lines (50 loc) · 1.58 KB
/
temples.html
File metadata and controls
53 lines (50 loc) · 1.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Temples | 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('temple.jpg');">
<div class="hero-text">
<h2>Temples of Tradition</h2>
<p>Experience Kudla’s deep spiritual heritage and architecture.</p>
</div>
</section>
<section class="content">
<h3>Popular Temples</h3>
<ul>
<li>Kadri Manjunath Temple – A historical gem blending culture and devotion.</li>
<li>Mangaladevi Temple – The origin of Mangalore’s name and a major pilgrimage site.</li>
<li>Kudroli Gokarnanatha Temple – A vibrant symbol of unity and festivity.</li>
</ul>
</section>
<footer>
<p>© 2025 Namma Kudla | Preserve our heritage.</p>
</footer>
</body>
</html>