-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (30 loc) · 938 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
<!--
reference: https://bushwickgrillclub.com/cooking-mmfood/
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>"MM..Food" Recipes</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<h1>MM..Food Recipes</h1>
<img
id="MMFOOD"
alt="Mm..Food"
src="https://upload.wikimedia.org/wikipedia/en/8/8a/Mmfood.jpg"
/>
<div class="container"></div>
<ul class="front-page">
<li><a href="./recipes/pho.html">Pho Recipe</a></li>
<li><a href="./recipes/DeepFriedFrenz.html">DeepFriedFrenz Recipe</a></li>
<li><a href="./recipes/HoeCakes.html">Hoe Cakes Recipe</a></li>
<li>
<a href="./recipes/Fillet_O_Rapper.html">Fillet-O-Rapper Recipe</a>
</li>
</ul>
</body>
</html>