-
Notifications
You must be signed in to change notification settings - Fork 0
/
raspberry-martini.html
72 lines (63 loc) · 2.96 KB
/
raspberry-martini.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
<!DOCTYPE html>
<html>
<head>
<title>Restaurant Menu | Starters | Raspberry Martini</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="drinks.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/raspberry.martini.jpg"/>
<h1>Raspberry Martini</h1>
<div class="recipe-details-info">
<p><b>Prep time: </b> 45mins</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 here:</h2>
<input id="check-01" type="checkbox">
<label for="check-01">extra small chips</label>
<br/>
<input id="check-02" type="checkbox">
<label for="check-02">extra greeksalad</label>
<br/>
<input id="check-03" type="checkbox">
<label for="check-03">extra burger</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</h2>
<ol>
<li>Start by preparing the sugar syrup; combine the caster sugar and water in a small saucepan. Bring to a simmer over a medium heat, stirring as you do to dissolve the sugar. Once dissolved, continue to simmer for 2-3 minutes to thicken the syrup a little. Remove from the heat and allow to cool to one side.</li>
<li>Meanwhile, purée the raspberries by mashing them in a bowl using a potato masher; alternatively, blend in a food processor until smooth. Press the purée through a fine sieve sat on top of a bowl to collect the purée</li>
</ol>
<br/>
<a href="thank-you.html">
<div>
<button type="submit">Order Now</button>
</div>
</a>
<br/>
</div>
</div>
</div>
</body>
</html>