forked from hack4impact-calpoly/bootcamp-grocery-prep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tilapia.html
109 lines (94 loc) · 3.14 KB
/
tilapia.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<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">Tilapia</h1>
<div class = "intro">
<div class="info">
<p class= "desc">
A dish of fish and rice/pasta, because what else would it go with. Can also be enjoyed
with your choice of side.
</p>
<h4>Servings</h4>
<div class="buttons">
<button id="-"> – </button>
<span id="num_servings">6</span>
<button id="+"> + </button>
</div>
</div>
<img class="food-img" src=images/tilapia.jpg> </img>
</div>
<h3>Ingredients</h3>
<ul>
<li>
<span class="ingredient">6</span>
tilapia filets
<ul>
<li>I get the frozen ones from Costco</li>
</ul>
</li>
<li>
variable amount of seasonings
<ul>
<li>Mrs. Dash</li>
<li>dill</li>
<li>pink himalayan salt</li>
<li>seasame seed oil</li>
<li>paprika</li>
</ul>
</li>
<li>
<span class="ingredient">0.5</span>
bottle(s) white wine
<ul>
<li>does not have to be cooking wine; $2 bottle will do</li>
</ul>
</li>
<li>
<span class="ingredient">4</span>
cup(s)? rice or pasta</li>
<li>
<span>1</span>
optional side stuff
<ul>
<li>tomatoes</li>
<li>brussel sprouts</li>
<li>broccoli</li>
</ul>
</li>
<li>
<span class="ingredient">0.5</span>
stick(s) butter
</li>
</ul>
<h3>Instructions</h3>
<ol>
<li>Cook rice or pasta</li>
<li>Season fish
</li>
<li>Heat pan on med/med-high with butter</li>
<li>Cook fish in pan
<ul>
<li>After a couple minutes, pour some wine on the sides / in
between fish and let it sizzle</li>
</ul></li>
<li>Flip the fish and repeat
</li>
<li>Prepare sides as desired </li>
</ol>
</main>
<script src="recipe.js"></script>
</body>
</html>