-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (31 loc) · 1.05 KB
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Weird & Funky Recipes</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Weird & Funky Recipes</h1>
<img src="weird_and_funky_recipes.jpg"
alt="Banner image for this website illustrating the AI generated chaos I manifested">
<p>Try these at home!</p>
<p><em>Not really though, for legal reasons...</em></p>
<h2>Meals</h2>
<ul>
<li><a href="lasagna.html">Lasagna</a></li>
<br>
<img src="lasagna.jpg" alt="Image of the finished lasagna dish (not real)">
<li><a href="mac_and_cheese.html">Mac And Cheese</a></li>
<br>
<img src="mac_and_cheese.jpg" alt="Image of the finished mac and cheese dish (not real)">
</ul>
<h2>Desserts</h2>
<ul>
<li><a href="apple_pie.html">Apple Pie</a></li>
<br>
<img src="apple_pie.jpg" alt="Image of the finished apple pie (not real)">
</ul>
</body>
</html>