-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrecipe2.html
73 lines (60 loc) · 1.98 KB
/
recipe2.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
<!DOCTYPE html>
<html>
<head>
<style>
.recipe img {
display: block;
margin: 0 auto;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}
.recipe {
font-size: 16px;
}
.recipe-title {
font-size: 35px;
font-family: 'DM Serif Display', serif;
font-family: 'Rufina', serif;
}
.ingredients-title {
font-size: 30px;
}
.ingredients-list {
font-size: 20px;
}
.instructions-title{
font-size: 30px;
}
.instructions-list{
font-size: 20px;
}
</style>
</head>
<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=DM+Serif+Display&family=Rufina&display=swap" rel="stylesheet">
<body>
<div class="recipe">
<h2 class="recipe-title">Turkey Sandwich</h2>
<img src="turkey_sandwich2.jpg" alt="Dish image">
<!--<p class="recipe-description">Recipe description</p>-->
<h3 class="ingredients-title">Ingredients:</h3>
<ul class="ingredients-list">
<li> ½ ripe avocado, pitted and peeled</li>
<li>2 slices rustic whole wheat bread</li>
<li>1 tablespoon mayonnaise</li>
<li>4 to 5 rounds of very thinly sliced red onion</li>
<li>2 pieces red oak or green leaf lettuce</li>
<li>2 slices ripe tomato</li>
<li>3-4 slices of oven roasted turkey</li>
</ul>
<h3 class="instructions-title">Instructions:</h3>
<ol class="instructions-list">
<li>Using a fork, lightly mash the avocado over one slice of bread.</li>
<li>Spread the mayonnaise over the other slice of bread.</li>
<li>Scatter the onions over the avocado.</li>
<li>Top with the lettuce, tomato and turkey.</li>
<li>Lay the remaining slice of bread over top and cut in half. Sandwich can be made up to 4 hours in advance and kept, tightly wrapped, in the refrigerator.</li>
</ol>
</div>
</body>
</html>