-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
93 lines (88 loc) · 3.65 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Recipe page</title>
<bds/>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css"/>
</head>
<body>
<main class="recipe">
<section class="image">
<img src="assets/coffee-image.png" alt="recipe-image" width="648" height="1080"/>
<div class="product-name-footer">
SWEET ICED COFFEE WITH COCONUT MILK
</div>
</section>
<section class="details">
<div class="meta">
<div class="rating">
<div class="stars">
<img src="assets/star-full-icon.svg" width="20" height="20" alt="star-on">
<img src="assets/star-full-icon.svg" width="20" height="20" alt="star-on">
<img src="assets/star-full-icon.svg" width="20" height="20" alt="star-on">
<img src="assets/star-full-icon.svg" width="20" height="20" alt="star-on">
<img src="assets/star-icon.svg" width="20" height="20" alt="star">
</div>
<div class="voters">(189)</div>
</div>
<h2 class="title">Sweet iced Coffee with Coconut Milk</h2>
</div>
<div class="recipe-properties">
<div class="infographic">
<div class="time">
<img src="assets/timer-outline.svg" width="32" height="32" alt="timer-icon"/>
<span class="title">TOTAL TIME</span>
<span class="text">10 minutes</span>
</div>
<div class="level">
<img src="assets/certificate-badge-thin.svg" width="32" height="32" alt="badge-icon"/>
<span class="title">LEVEL</span>
<span class="text">Medium</span>
</div>
<div class="budget">
<img src="assets/wallet-light.svg" width="32" height="32" alt="wallet-icon"/>
<span class="title">BUDGET</span>
<span class="text">Under $2</span>
</div>
</div>
<div class="blurb">
<p>Sweet iced Coffee coconut milk is easy to make and stores well in the fridge.</p>
<p>Make a large batch and save yourself a few trips to the coffee shop.</p>
</div>
<div class="ingredients">
<h3>INGREDIENTS</h3>
<ul>
<li>
<input type="checkbox" name="espresso-powder"/>
3 tablespoons Espresso coffee powder</li>
<li>
<input type="checkbox" name="boiled-water"/>
1 cup of boiled water</li>
<li>
<input type="checkbox" name="coconut-milk"/>
1 cup of coconut milk</li>
<li>
<input type="checkbox" name="sugar"/>
3 tablespoons of sugar</li>
</ul>
</div>
<div class="instructions">
<h3>INSTRUCTIONS</h3>
<ol>
<li>Boil some water and let sit for 1-2 minutes.</li>
<li>Put the coffee grounds into a cafetiere and pour in the water.</li>
<li>Let the coffee steep for 5 minutes then slowly press down the plunger on your Cafetiere.</li>
<li>Pour the coffee into a jug, allow to cool then chill for several hours.</li>
<li>Whisk in the coconut milk and condensed milk and serve over plenty of ice.</li>
<li>This coffee can be stored in the fridge for up to 5 days. Shake or stir again before serving.</li>
</ol>
</div>
</div>
</section>
</main>
</body>
</html>