forked from Izgardon/bootstrap-site
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathingredients.html
More file actions
141 lines (141 loc) · 5.15 KB
/
Copy pathingredients.html
File metadata and controls
141 lines (141 loc) · 5.15 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
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<!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" />
<link rel="stylesheet" href="./styles.css" />
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
crossorigin="anonymous"
/>
<title>Bootstrap site</title>
</head>
<body class="">
<header class="bg-dark p-2">
<div class="container flex-column mt-3" style="width: 100%">
<h1 class="text-center text-light display-6">Ingredients and Recipe</h1>
<nav class="navbar1 mt-2">
<a href="./index.html" class="link">Home</a
><a href="./ingredients.html" class="link">Ingredients</a
><a href="./places.html" class="link">Where to find</a>
</nav>
<div class="dropdown mobile-menu">
<button
class="btn btn-secondary dropdown-toggle"
type="button"
id="dropdownMenuButton"
data-toggle="dropdown"
aria-haspopup="true"
aria-expanded="false"
>
Menu
</button>
<div class="dropdown-menu" aria-labelledby="dropdownMenuButton">
<a href="./index.html" class="link">Home</a
><a href="./ingredients.html" class="link">Ingredients</a
><a href="./places.html" class="link">Where to find</a>
</div>
</div>
</div>
</header>
<main>
<div class="video">
<iframe
src="https://www.youtube.com/embed/b9rs3Aznrt0"
title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
></iframe>
</div>
<h3 class="mb-5 text-center mt-3">Method</h3>
<div
class="container container-2 mt-5 text-center mb-5"
style="max-width: 70%"
>
<div class="text-start ingredients part-1">
<h4>Ingredients</h4>
<div class="mt-3">
<h5 class="ps-0">Rice Ingredients:</h5>
<ul class="ps-0">
<li>2 Cups Medium Grain Rice</li>
<li>2 Cups Filtered Water</li>
</ul>
</div>
<div class="mt-3">
<h5 class="ps-0">Fried Rice Sauce:</h5>
<ul class="ps-0">
<li>Galangal</li>
<li>1 tsp Sesame Oil</li>
<li>1 Tbsp Malaysian Sambal</li>
<li>3 Cloves Garlic</li>
<li>1 Tbsp Sweet soy sauce</li>
<li>1.5 Tbsp Double Aged Soy Sauce</li>
</ul>
</div>
<div class="mt-3">
<h5 class="ps-0">Fried Shallot Ingredients:</h5>
<ul class="ps-0">
<li>3 Shallots</li>
<li>Vegetable oil</li>
</ul>
</div>
<div class="mt-3">
<h5 class="ps-0">Fried Rice Ingredients:</h5>
<ul class="ps-0">
<li>2 Cups Medium Grain Rice</li>
<li>2 Cups Filtered Water</li>
</ul>
</div>
</div>
<div class="text-start ingredients part-2">
<h4>Instructions</h4>
<ol>
<li>Before cooking the rice, wash thoroughly 2x.</li>
<li>
Place into a rice cooker and add equal parts of water. Add cooked
rice to the lined baking sheet, cover, and refrigerate at least
overnight.
</li>
<li>
For fried rice sauce, combine all ingredients into a small bowl
and whisk together.
</li>
<li>
Finely slice the shallots and place in a cold wok filled with
vegetable oil. Cook over medium-high heat. Stir with chopsticks
until shallots are golden brown then remove and drain on paper
towels. Season with salt.
</li>
<li>
Heat an oiled wok over medium-high until smoking. Swirl oil around
and remove oil.
</li>
<li>
Heat duck fat over medium-high heat. Once dissolved, add in garlic
and toast.
</li>
<li>
Add diced shallots, diced red chiles, and finely sliced green
onions. Stir fry over medium heat for 2-3 minutes.
</li>
<li>
Add in beaten eggs along with salt. Cook for a couple seconds then
stir fry together until eggs are cooked.
</li>
<li>Add already cooked cold rice stir frying for 2-3 minutes.</li>
<li>Mix in ground white pepper, MSG and toss together.</li>
<li>
Turn off the heat and add in the fried rice sauce. Mix until
evenly distributed.
</li>
<li>Plate and top with fried shallots, and sliced green onions.</li>
</ol>
</div>
</div>
</main>
</body>
</html>