-
Notifications
You must be signed in to change notification settings - Fork 0
/
recipe.html
101 lines (94 loc) · 2.61 KB
/
recipe.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0" />
<title>Recipe Details</title>
<link
rel="stylesheet"
href="/style.css" />
<link
rel="stylesheet"
href="/src/components/recipeDetails.css" />
</head>
<body>
<!-- Recipe details -->
<!--
<div class="recipe-bg">
<img
src="../featured/beef-stroganoff-bg.png"
alt="" />
<div class="overlay"></div>
</div>
<section class="recipe">
<div class="recipe-details">
<div class="thumbmail-box">
<img
src="../featured/beef-stroganoff-thumbmail.png"
alt="Ma Po Tofu" />
</div>
<div class="recipe-content">
<div>
<h1>Beef Stroganoff</h1>
<h3>
<span>Tags:</span>
No Tags
</h3>
<h3>
<span>Country:</span>
Russia
</h3>
</div>
<div>
<h3>
<span>Category:</span>
Beef
</h3>
</div>
</div>
<div class="recipe-instruction">
<div>
<h2>Instructions</h2>
<p>
Heat the olive oil in a non-stick frying pan then add the sliced
onion and cook on a medium heat until completely softened, so
around 15 mins, adding a little splash of water if they start to
stick at all. Crush in the garlic and cook for a 2-3 mins further,
then add the butter. Once the butter is foaming a little, add the
mushrooms and cook for around 5 mins until completely softened.
Season everything well, then tip onto a plate. Tip the flour into
a bowl with a big pinch of salt and pepper, then toss the steak in
the seasoned flour. Add the steak pieces to the pan, splashing in
a little oil if the pan looks particularly dry, and fry for 3-4
mins, until well coloured. Tip the onions and mushrooms back into
the pan. Whisk the crème fraîche, mustard and beef stock together,
then pour into the pan. Cook over a medium heat for around 5 mins.
Scatter with parsley, then serve with pappardelle or rice.
</p>
</div>
<div>
<h2>Ingredients</h2>
<ul>
<li>1 tbls Olive Oil</li>
<li>1 Onions</li>
<li>1 clove Garlic</li>
<li>1 tbsp Butter</li>
<li>250g Mushrooms</li>
<li>500g Beef Fillet</li>
<li>ltbsp Plain Flour</li>
<li>150g Creme Fraiche</li>
<li>1 tbsp English Mustard</li>
<li>100ml Beef Stock</li>
<li>Topping Parsley</li>
</ul>
</div>
</div>
</div>
-->
<script
type="module"
src="./src/js/mealDBAPI.js"></script>
</body>
</html>