-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
158 lines (142 loc) · 4.45 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<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=Tangerine:wght@700&display=swap"
rel="stylesheet"
/>
<title>One recipe for each meal!</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<header>
<nav><h1 class="main-title">Odin Menu</h1></nav>
</header>
<div id="main-section">
<h1>
Simple recipes for
<span class="footer-title">every moment of the day</span>
</h1>
<div id="card-container">
<a href="/recipes/french-toast.html" class="recipe-container">
<article class="recipe-card">
<img
src="/images/french-toast.jpg"
alt="French toast with blueberries and strwaberries with some butter on top"
/>
</article>
<h2>French Toast</h2>
</a>
<a href="/recipes/chicken-and-rice.html" class="recipe-container">
<article class="recipe-card">
<img
src="/images/Sweet-and-Spicy-Chicken.jpg"
alt="Sweet and spicy chicken over a bowl of rice"
/>
</article>
<h2>Chicken and Rice</h2>
</a>
<a href="/recipes/pesto-pasta.html" class="recipe-container">
<article class="recipe-card">
<img
src="/images/pesto-chicken-pasta.jpg"
alt="A plate of pesto chicken pasta"
/>
</article>
<h2>Pesto Pasta</h2>
</a>
<a href="/recipes/yogurt-cake.html" class="recipe-container">
<article class="recipe-card">
<img
src="/images/3-ingredient-creamy-yogurt-cake.jpg"
alt="A slice of a creamy yogurt cake on a plate with the whole cake behind it"
/>
</article>
<h2>Yogurt Cake</h2>
</a>
</div>
</div>
<footer>
<ul class="footer-links">
<li>
<a href=""
><img src="/images/quick-and-easy.jpeg" alt="Skillet potato gratin"
/></a>
<span class="footer-title">QUICK AND EASY</span>
</li>
<li>
<a href=""
><img src="/images/dinner.jpeg" alt="Brocoli and chicken in a pan"
/></a>
<span class="footer-title">DINNER</span>
</li>
<li>
<a href=""
><img
src="/images/vegeterian.jpeg"
alt="Vegeterian skillet stuffed shells"
/></a>
<span class="footer-title">VEGETERIAN</span>
</li>
<li>
<a href=""
><img
src="/images/healthy.jpeg"
alt="Shrimps and vegetables in a skillet"
/></a>
<span class="footer-title">HEALTHY</span>
</li>
<li>
<a href=""
><img src="/images/desserts.jpg" alt="Gluten-free brownies"
/></a>
<span class="footer-title">DESSERTS</span>
</li>
<li>
<a href=""
><img src="/images/soups.jpeg" alt="Vegetables and chicken soup"
/></a>
<span class="footer-title">SOUPS</span>
</li>
<li>
<a href=""><img src="/images/salad.jpg" alt="Salad in a bowl" /></a>
<span class="footer-title">SALADS</span>
</li>
<li>
<a href=""
><img src="/images/spicy.jpeg" alt="Nashville-style hot chicken"
/></a>
<span class="footer-title">SPICY</span>
</li>
<li>
<a href=""
><img
src="/images/meal-prep.jpg"
alt="Chicken and Hummus meal prep"
/></a>
<span class="footer-title">MEAL PREP</span>
</li>
</ul>
</footer>
</body>
</html>
<!-- <img
src="./images/breakfast-lunch-dinner.jpg"
alt="neon lights reading breakfast lunch dinner"
/>
<h2>Don't forget to eat three meals per day!</h2>
<ul>
<li>
<a href="./recipes/crepes.html">Basic Crepes</a>
</li>
<li>
<a href="./recipes/sloppyjoes.html">Sloppy Joes</a>
</li>
<li>
<a href="./recipes/honey-glazed-chicken.html">Honey Glazed Chicken</a>
</li>
</ul> -->