-
Notifications
You must be signed in to change notification settings - Fork 0
/
chimney-cake.html
74 lines (66 loc) · 4.45 KB
/
chimney-cake.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
<!DOCTYPE html>
<html>
<head>
<title>Restaurant Menu | Starters | Chimney Cake</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="dessert.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/chimney.cakes.jpg"/>
<h1>Chimney Cake</h1>
<div class="recipe-details-info">
<p><b>Prep time: </b> 1h10mins</p>
<p style="float: right;"><b>Serves: </b>8</p>
<br/>
<p><strong>PRICE:</strong>R210</p>
<br/>
</div>
<div class="recipe-top-up">
<h2>Top up here :</h2>
<input id="check-01" type="checkbox">
<label for="check-01">vanilla milkshake</label>
<br/>
<input id="check-03" type="checkbox">
<label for="check-03">choclate milkshake</label>
<br/>
<input id="check-04" type="checkbox">
<label for="check-04">strawberry milkshake</label>
<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</h2>
<ol>
<li>Mix the yeast in a large bowl with the flour, sugar and a pinch of salt until well combined. Add the egg, milk and butter and bring together to form a wet dough using your hands.</li>
<li>Tip onto a lightly floured surface and knead for 10-15 mins until a smooth and elastic ball has formed. Place in a greased bowl, cover with a piece of clingfilm and let it rise in a warm place for an hour, or until doubled in size.</li>
<li>Meanwhile, preheat your oven to gas 7, 220°C, fan 200°C, and prepare your rolling pin and walnut sugar. Tear two sheets of tin foil four inches longer than your rolling pin and wrap both sheets around the pin, turning the end pieces so that the rolling pin is entirely covered. If you have two rolling pins then repeat on the second. Brush the foiled rolling pins in melted butter, save the rest of this butter for later on. Mix the ground walnuts, sugar and cinnamon together in a tray that is long enough to fit your rolling pin.</li>
<li>Remove the dough from the bowl and roll it out in a square roughly 45x45cm in size and ½cm thick. Cut the dough into 3cm wide strips using a pizza cutter or knife. Starting from one end of the rolling pin, wrap one strip around the length of the rolling pin, overlapping slightly like a helter skelter. When the strip runs out, add another one to it, pushing the ends of dough together to bind them. Once the length of the rolling pin is covered roll the rolling pin on the surface to ensure the dough is well attached to the pin. Brush all over with melted butter and sprinkle the caster sugar on every side too. Repeat with the second rolling pin if you have one.</li>
<li>Pop the rolling pin on to a baking tray in the hot oven and cook for 20 mins, turning every 3 minutes, so that the sugar fully dissolves and it bakes evenly, until it turns a consistent golden-brown colour.</li>
<li>Remove from the oven, brush with the remaining melted butter and roll in the walnut sugar. Slide off the rolling pin and carefully snap in half. Repeat with the second pin so you are left with four coils of Chimney Cake!</li>
</ol>
<br/>
<a href="thank-you.html">
<div>
<button type="submit">Order Now</button>
</div>
</a>
<br/>
</div>
</div>
</div>
</body>
</html>