forked from hack4impact-calpoly/bootcamp-grocery-prep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tofu.html
89 lines (74 loc) · 2.54 KB
/
tofu.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<html lang="en-US">
<head>
<meta charset="utf-8">
<title>Sah Dude</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header>
<h1 class="top">~Grocery Prep~</h1>
<nav>
<a class="top" href = "index.html">Home</a>
<a class="top" id="random"href="random.html">Random Recipe</a>
<a class="top" id= "about" href = "about.html">About the Chef</a>
</nav>
</header>
<main>
<h1 class = "title">Spicy Tofu Soup</h1>
<div class = "intro">
<div class="info">
<p class= "desc">
Perfect for cold or even any weather. Spicy tofu soup.
</p>
<h4>Servings</h4>
<div class="buttons">
<button id="-"> – </button>
<span id="num_servings">4</span>
<button id="+"> + </button>
</div>
</div>
<img class="food-img" src=images/tofu2.jpg> </img>
</div>
<h3>Ingredients</h3>
<ul>
<li>
<span class="ingredient">1</span>
spicy tofu soup kit
<ul>
<li>from any Asian market near you</li>
</ul>
</li>
<li>
<span class="ingredient">4</span>
(optional) egg(s)
</li>
<li>
<span class="ingredient">2</span>
(optional) cup(s) rice</li>
<li>
extras
<ul>
<li>
<span class="ingredient">1</span>
cup(s) bok choi</li>
<li>
<span class="ingredient">0.5</span>
cup(s) mushrooms</li>
<li>
<span class="ingredient">1</span>
unit(s) of kimchi</li>
</ul>
</li>
</ul>
<h3>Instructions</h3>
<ol>
<li>Follow instructions on tofu soup package</li>
<li>add decorations while soup is cooking
</li>
<li>Drop an egg in to be fancy</li>
<li>Cook rice if that's what you need</li>
</ol>
</main>
<script src="recipe.js"></script>
</body>
</html>