-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html~
More file actions
96 lines (88 loc) · 4.6 KB
/
index.html~
File metadata and controls
96 lines (88 loc) · 4.6 KB
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
94
95
96
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Savory</title>
<link rel="stylesheet" type="text/css" href="reset.css" />
<link rel="stylesheet" type="text/css" href="style.css" />
<link href="https://fonts.googleapis.com/css?family=Poppins:400,600" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Work+Sans" rel="stylesheet">
</head>
<body>
<div class="container">
<header>
<img src="https://content.codecademy.com/courses/learn-css-grid/lesson-ii/savory.svg" class="logo">
</header>
<main>
<div class="recipe a">
<img src="https://content.codecademy.com/courses/learn-css-grid/lesson-ii/image-1.png" />
<h2>CHOCOLATE MOUSSE</h2>
<img src="https://content.codecademy.com/courses/learn-css-grid/lesson-ii/time.svg" class="time" />
<p class="mins">20 mins</p>
<p class="description">
This delicious chocolate mousse will delight dinner guests of all ages!</p>
</div>
<div class="recipe b">
<img src="https://content.codecademy.com/courses/learn-css-grid/lesson-ii/image-2.png" />
<h2>SMOKED LAMB WITH RICE</h2>
<img src="https://content.codecademy.com/courses/learn-css-grid/lesson-ii/time.svg" class="time" />
<p class="mins">120 mins</p>
<p class="description">
Want to feel like your favorite relative came over and made you dinner? This comfort meal of smoked lamb and rice will quickly become a weekend favorite!
</p>
</div>
<div class="recipe c">
<img src="https://content.codecademy.com/courses/learn-css-grid/lesson-ii/image-5.png" />
<h2>GOAT CHEESE SALAD</h2>
<img src="https://content.codecademy.com/courses/learn-css-grid/lesson-ii/time.svg" class="time" />
<p class="mins">25 mins</p>
<p class="description">
In addition to the full flavor of goat cheese, this salad includes kale, avocado, and farro to balance it out.</p>
</div>
<div class="recipe d">
<img src="https://content.codecademy.com/courses/learn-css-grid/lesson-ii/image-4.png" />
<h2>CHICKEN SANDWICH</h2>
<img src="https://content.codecademy.com/courses/learn-css-grid/lesson-ii/time.svg" class="time" />
<p class="mins">45 mins</p>
<p class="description">
We've packed a lot into this one - shredded cabbage, carmalized onions, deep-fried chicken, chipotle mayo, half-sour pickles, and a toasted sesame bun will leave you thoroughly satisfied!</p>
</div>
<div class="recipe e">
<img src="https://content.codecademy.com/courses/learn-css-grid/lesson-ii/image-3.png" />
<h2>SWEET CHURROS</h2>
<img src="https://content.codecademy.com/courses/learn-css-grid/lesson-ii/time.svg" class="time" />
<p class="mins">90 mins</p>
<p class="description">
Making this classic summer treat at home will remind you of a childhood spent in the park.</p>
</div>
<div class="recipe f">
<img src="https://content.codecademy.com/courses/learn-css-grid/lesson-ii/image-6.png" />
<h2>BERRY PARFAIT</h2>
<img src="https://content.codecademy.com/courses/learn-css-grid/lesson-ii/time.svg" class="time" />
<p class="mins">10 mins</p>
<p class="description">
This low-calorie, vitamin-packed parfait is great for breakfast, dessert, or post-workout!</p>
</div>
<div class="recipe e">
<img src="https://content.codecademy.com/courses/learn-css-grid/lesson-ii/image-3.png" />
<h2>SWEET CHURROS</h2>
<img src="https://content.codecademy.com/courses/learn-css-grid/lesson-ii/time.svg" class="time" />
<p class="mins">90 mins</p>
<p class="description">
Making this classic summer treat at home will remind you of a childhood spent in the park.</p>
</div>
<div class="recipe f">
<img src="https://content.codecademy.com/courses/learn-css-grid/lesson-ii/image-6.png" />
<h2>BERRY PARFAIT</h2>
<img src="https://content.codecademy.com/courses/learn-css-grid/lesson-ii/time.svg" class="time" />
<p class="mins">10 mins</p>
<p class="description">
This low-calorie, vitamin-packed parfait is great for breakfast, dessert, or post-workout!</p>
</div>
</main>
<footer>
<img src="https://content.codecademy.com/courses/learn-css-grid/lesson-ii/savory.svg" class="logo">
</footer>
</div>
</body>
</html>