-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (21 loc) · 868 Bytes
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Authentic Indian Recipes</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Authentic Indian Recipes</h1>
<img src="images/assorted-indian-food.jpg" width="600" class="images">
<ul style="list-style-type: circle">
<li><a href="recipes/butter-chicken.html">Butter Chicken</a></li>
<li><a href="recipes/fish-fry.html">Fish Fry</a></li>
<li><a href="recipes/gajar-halwa.html">Gajar Halwa</a></li>
<li><a href="recipes/palak-paneer.html">Palak Paneer</a></li>
</ul>
<p>All recipes belong to <a href="https://www.sanjeevkapoor.com/">Sanjeev Kapoor Recipes</a>.</p>
<p>All the images belong to the respective owners.</p>
<p>This has been made as a part of <a href="https://www.theodinproject.com/lessons/foundations-recipes">Project: Recipes</a>.</p>
</body>
</html>