-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (30 loc) · 867 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
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Webpage</title>
</head>
<body>
<header>
<h1>Welcome to My Recipe Webpage</h1>
<!-- Add any other header content here -->
</header>
<nav>
<!-- Add your navigation links here if needed -->
</nav>
<main>
<!-- Your main content goes here -->
<p>Hello, recipe world!</p>
<ul>
<li><a href="./recipes/Hamburgers.html">Hamburgers!!</a> </li>
<li><a href="./recipes/Lasagna.html">Lasagna!!</a></li>
<li><a href="./recipes/Spareribs.html">Spareribs!!</a></li>
</ul>
</main>
<footer>
<!-- Add your footer content here -->
<p>© 2023 Jordi</p>
</footer>
</body>
</html>