-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (28 loc) · 989 Bytes
/
index.html
File metadata and controls
28 lines (28 loc) · 989 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Odin Recipes: Indian Style</title>
</html>
<body>
<header>
<h1>Odin Recipes: Indian Style</h1>
</header>
<main>
<h2>Featured Recipes</h2>
<p>Explore our collection of delicious recipes!</p>
<img src="https://offloadmedia.feverup.com/secretdubai.co/wp-content/uploads/2023/08/10112413/shutterstock_1304901667-1024x683.jpg" alt="Featured Recipes" width="300" height="200">
<nav>
<ul>
<li><a href="../odin-recipes/recipes/samosa.html">Samosa</a></li>
<li><a href="../odin-recipes/recipes/vada_pav.html">Vada Pav</a></li>
<li><a href="../odin-recipes/recipes/pani_puri.html">Pani Puri</a></li>
</ul>
</nav>
</main>
<footer>
<p>© 2025 Indian Odin Recipes</p>
</footer>
</body>
</html>