-
Notifications
You must be signed in to change notification settings - Fork 0
/
chicken-and-tomato-curry.html
76 lines (68 loc) · 3.48 KB
/
chicken-and-tomato-curry.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
<!DOCTYPE html>
<html>
<head>
<title>Restaurant Menu | Starters | Chicken and Tomato Spiced Curry</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="fontAwesome/css/all.css">
</head>
<body class="body-recipes">
<div class="header">
<a href="meals.html">
<i class="fas fa-long-arrow-alt-left"></i>
</a>
<img src="images/logo-text.png"/>
</div>
<div class="recipe">
<div class="recipe-details">
<img src="images/chicken.and.tomato.curry.jpg"/>
<h1>Chicken and Tomato Spiced Curry</h1>
<div class="recipe-details-info">
<p><b>Prep time: </b> 25mins</p>
<p style="float: right;"><b>Serves: </b>4</p>
<br/>
<p><strong>PRICE:</strong>R200</p>
<br/>
</div>
<div class="recipe-top-up">
<h2>Top up your meal here with some extra:</h2>
<input id="check-01" type="checkbox">
<label for="check-01">extra chicken</label>
<br/>
<input id="check-02" type="checkbox">
<label for="check-02">extra tomatoes</label>
<br/>
<input id="check-03" type="checkbox">
<label for="check-03">extra small chips</label>
<br/>
<input id="check-04" type="checkbox">
<label for="check-04">extra salad</label>
<br/>
<br/>
<h2>If any allegic's add a note:</h2>
<form action="submit">
<input type="text" placeholder="Your name" id="name"/>
<input type="text" placeholder="Your email" id="email"/>
<textarea placeholder="Type your message here"></textarea>
<a class="button" href="message-received.html">SUBMIT</a>
</form>
</div>
<div class="recipe-details-steps">
<h2>Preparation of Meal</h2>
<ol>
<li>Heat 1 tbsp of the oil in a large flameproof casserole dish set over a high heat. Working in batches if necessary, cook the chicken for 5-7 mins until golden and just cooked through, then remove and set aside.</li>
<li>Put the remaining oil in the dish. Add the onion, cook for 3 mins until soft, then add the red pepper and cook for 2 mins. Stir in the garlic and ginger and cook for 30 secs. Stir in the curry paste until everything is well coated.</li>
<li>Pour in the tomatoes along with 200ml water. Bring to the boil, then reduce the heat, cover the dish and leave to simmer for 10 mins until the sauce has thickened a little. Return the chicken to the dish and cook for 5 mins, uncovered, until piping hot and cooked through.</li>
<li>Meanwhile, cook the basmati rice following pack instructions. Serve with the curry and sprinkle over the coriander to finish.</li>
</ol>
<br/>
<a href="thank-you.html">
<div>
<button type="submit">Order Now</button>
</div>
</a>
<br/>
</div>
</div>
</div>
</body>
</html>