-
Notifications
You must be signed in to change notification settings - Fork 0
/
recipes.html
189 lines (184 loc) · 6.3 KB
/
recipes.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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com" rel="preconnect" />
<link href="https://fonts.gstatic.com" rel="preconnect" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,400;1,700&display=swap"
rel="stylesheet"
/>
<!-- Normalize styles across browsers -->
<link href="css/reset.css" rel="stylesheet" />
<!-- Custom styles -->
<link href="css/styles.css" rel="stylesheet" />
<!-- Font Awesome -->
<script
src="https://kit.fontawesome.com/cbbaf4368b.js"
crossorigin="anonymous"
></script>
<!-- jQuery -->
<script
src="https://code.jquery.com/jquery-3.7.1.min.js"
integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo="
crossorigin="anonymous"
></script>
<!-- Custom JS -->
<script src="js/scripts.js" defer></script>
<title>Recipes</title>
</head>
<body class="p-home">
<a id="skip-to-main" href="#main-content">Skip to Main Content</a>
<header id="header">
<h1 class="title--with-icon">
<i class="fa-solid fa-utensils fa-sm"></i> Recipes
</h1>
<nav id="nav">
<div class="nav">
<a class="nav__action" href="index.html">
<span class="nav__action__txt">Pets</span>
</a>
<a class="nav__action" href="travel.html">
<span class="nav__action__txt">Travel</span>
</a>
<a class="nav__action" href="recipes.html" aria-current="page">
<span class="nav__action__txt">Recipes</span>
</a>
</div>
<div class="dropup">
<button
class="dropup__btn"
title="Navigation"
aria-label="Navigation"
>
<span>
<i class="fa-solid fa-utensils dropup__btn__txt-icon"></i> Recipes
</span>
<span class="dropup__btn__icon">
<i class="fa-solid fa-chevron-up"></i>
</span>
</button>
<div class="dropup__list-container">
<ul class="dropup__list">
<li>
<a class="dropup__list__action" href="index.html">
<i class="fa-solid fa-paw fa-sm"></i> Pets
</a>
</li>
<li>
<a class="dropup__list__action" href="travel.html">
<i class="fa-solid fa-plane fa-sm"></i> Travel
</a>
</li>
<li class="dropup__list__item--selected">
<a
class="dropup__list__action"
href="recipes.html"
aria-current="page"
>
<i class="fa-solid fa-utensils fa-sm"></i> Recipes
</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<main id="main-content">
<div class="home-grid">
<a class="home-grid__item" href="recipes/0-tomatoandeggs.html">
<figure class="home-grid__figure">
<!-- Decorative blur effect -->
<img
class="img-blur-decor"
src="images/recipes/tomato-and-eggs-1.jpeg"
alt=""
/>
<div class="home-grid__img-container">
<img
src="images/recipes/tomato-and-eggs-1.jpeg"
alt="Tomato and Eggs with chives in a plate."
/>
</div>
<figcaption>Tomato and Eggs</figcaption>
</figure>
<!-- Alex Ni -->
</a>
<a class="home-grid__item" href="recipes/1-twicebakedpotato.html">
<figure class="home-grid__figure">
<!-- Decorative blur effect -->
<img
class="img-blur-decor"
src="images/recipes/baked-potato.jpeg"
alt=""
/>
<div class="home-grid__img-container">
<img
src="images/recipes/baked-potato.jpeg"
alt="Backed potato with cheese and bacon bits."
/>
</div>
<figcaption>Twice Baked Potato</figcaption>
</figure>
<!-- Sanjida Eva -->
</a>
<a class="home-grid__item" href="recipes/2-deadsimplefriedrice.html">
<figure class="home-grid__figure">
<!-- Decorative blur effect -->
<img
class="img-blur-decor"
src="images/recipes/dead-simple-fried-rice-primary.jpg"
alt=""
/>
<div class="home-grid__img-container">
<img
src="images/recipes/dead-simple-fried-rice-primary.jpg"
alt="Fried rice in a pan."
/>
</div>
<figcaption>Dead Simple Fried Rice</figcaption>
</figure>
<!-- Tristan Goodell -->
</a>
<a class="home-grid__item" href="recipes/3-dutchbabypancake.html">
<figure class="home-grid__figure">
<!-- Decorative blur effect -->
<img
class="img-blur-decor"
src="images/recipes/dutch-baby-in-pan.jpg"
alt=""
/>
<div class="home-grid__img-container">
<img
src="images/recipes/dutch-baby-in-pan.jpg"
alt="Dutch Baby Pancake in a pan."
/>
</div>
<figcaption>Dutch Baby Pancake</figcaption>
</figure>
<!-- David Eyre (edited by Eric Xu) -->
</a>
<a class="home-grid__item" href="recipes/4-homemadetikkamasala.html">
<figure class="home-grid__figure">
<!-- Decorative blur effect -->
<img
class="img-blur-decor"
src="images/recipes/tikka-masala-1.jpg"
alt=""
/>
<div class="home-grid__img-container">
<img
src="images/recipes/tikka-masala-1.jpg"
alt="Tikka Masala in a bowl."
/>
</div>
<figcaption>Homemade Tikka Masala</figcaption>
</figure>
<!-- Rachel Sondergeld -->
</a>
</div>
</main>
</body>
</html>