forked from markgoho/magic-cake
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (42 loc) · 1.59 KB
/
index.html
File metadata and controls
45 lines (42 loc) · 1.59 KB
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
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Magic Cake</title>
<link rel="stylesheet" href="normalize.css">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1 class="heading">Recipe World</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="recipes.html">Recipes</a></li>
<li><a href="suggest.html">Suggest</a></li>
</ul>
</nav>
<h2 class="heading">Magic Cake</h2>
<p class="body-text">Magic cake is one of the tastiest cakes the world ahs ever known. Few have tried and lived to tell about it, and these
are their stores.</p>
<p class="body-text">We also need to stress that whatever happens to you as a result of consuming Magic Cake is your responsibility. You've
been warned, and you can view our <a href="http://www.example.com/legal.html" target="_blank">legal page</a> for more
information.
</p>
<h3 class="heading">Ingredients</h3>
<ul>
<li>2 eggs</li>
<li><a href="https://www.amazon.com/Domino-Sugar-Granulated-4LB-Canister/dp/B00HJCXX24/ref=sr_1_3_s_it?s=grocery&ie=UTF8&qid=1500938121&sr=1-3&keywords=sugar&th=1">1 pound sugar</a></li>
<li>3 sticks of butter</li>
</ul>
<h3 class="heading">Directions</h3>
<ol>
<li>Mix eggs, sugar, and butter in a large bowl</li>
<li>Spread into a non-stick dish</li>
<li>Bake at 350 degrees for 1 hour</li>
<li>Let sit at room temp for 20 minutes</li>
<li>Eat and enjoy!</li>
</ol>
</body>
</html>