-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (61 loc) · 2.94 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Recipe</title>
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="preload" href="https://fonts.googleapis.com/css2?display=swap&family=EB+Garamond:wght@300;400" as="style">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?display=swap&family=EB+Garamond:wght@300;400">
<link rel="shortcut icon" href="./assets/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css">
<link rel="stylesheet" href="./style.css">
</head>
<body>
<img id="logo" src="./assets/logo.svg" alt="Logo">
<main>
<p class="title">BREAKFAST</p>
<h1 class="center">EASY FLUFFLY AMERICAN PANCAKES</h1>
<div id="recipe">
<div class="grid-prep">
<img src="./assets/icon-pot.svg" alt="Icon Pot">
<p class="title">PREP TIME<br>5 minutes</p>
<p class="title">COOK TIME<br>15 minutes</p>
<p class="title">READY IN<br>20 minutes</p>
</div>
<div class="grid-photo"><img src="./assets/photo.jpg" alt="Pancakes"></div>
<div class="grid-serving">
<img src="./assets/icon-silverware.svg" alt="Silverware">
<p class="title">SERVINGS<br>8-10 pancakes</p>
<p class="title">CALORIES<br>390Kcal</p>
<p class="title">SOURCE<br>Allrecipes.com</p>
</div>
<div class="grid-ingred">
<h2>Ingredients</h2>
<p class="ingredients">
(8-10 pancakes)<br>
1 cup (120g) all-purpose flour<br>
2 tablespoons sugar<br>
2 teaspoons baking powder<br>
1 pinch of salt<br>
1 cup (240ml) milk<br>
2 tablespoons melted butter or vegetable oil<br>
1 large egg<br>
assorting toppings such as maple stryp, fresh berries, etc.</p>
</div>
<div class="grid-step">
<h2>Steps</h2>
<p>Lorem ipsum dolor sit amet, consectetur adpiscing elit. Aliquam odio mi, volutpat et ultricies vitae, blandit in neque.</p>
<p>Pellentesque nec massa eu elit bandit maximus placerat vel augue.</p>
<p> Aenean fermentum sagittis nisi, et blandit erat scelerisque sit amet. Integer ante tortor, finibus non eleifend eget.</p>
<p>Rhoncus risus. Integer porta venenatis ex, suscipit semper dui facilisis nec.</p>
<p>Aliquan odio mi, volutpat et ultricies vitae, blandit in neque. Aenean fermentum sagittis nisi, et blandit erat scelerisque sit amet. Integer ante tortor, finibus non eleifend eget.</p>
</div>
</div>
<h1 class="center">notes</h1>
<p>Totally foolproof! You can top it with any topping of your choice, and even adapt the recipe depending on your mood and your creativity.</p>
<p class="footer">FAVORITE FAMILY RECIPES</p>
</main>
</body>
</html>