generated from tripleten-com/se_project_coffeeshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
294 lines (294 loc) · 11 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
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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="author" content="Eddison Torres" />
<meta name="keywords" content="coffee, shop, project, owner" />
<meta name="description" content="sentence 1. sentence 2." />
<title>Coffee Shop</title>
<link rel="stylesheet" href="./pages/index.css" />
<link rel="icon" href="./favicon.ico" />
<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=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div class="page">
<header class="header">
<nav class="nav">
<img
src="./images/logo_coffeeshop_dark.svg"
alt="coffee shop logo"
class="nav__logo"
/>
<ul class="nav__links">
<li>
<a href="#recipes" class="nav__link">Recipes</a>
</li>
<li>
<a href="#menu" class="nav__link">Menu</a>
</li>
<li>
<a href="#reservations" class="nav__link">Book a Table</a>
</li>
<li>
<a href="#about" class="nav__link">Contacts</a>
</li>
</ul>
</nav>
<h1 class="header__title">
<span class="header__span-accent">specialty coffee</span> in the
triple peaks library
</h1>
<p class="header__description">
Welcome to our study zone! We've got the coffee to energize you and
the cozy vibes to help you get creative.
</p>
<img
src="./images/inside_coffee_shop.png"
alt="coffee shop Illustration"
class="header__image"
/>
<div class="header__footer">
<div>
<p class="header__paragraph">Hours</p>
<p class="header__paragraph">Monday – Friday (10:00 – 19:00)</p>
<p class="header__paragraph">Saturday – Sunday (11:00 – 18:00)</p>
</div>
<p class="header__paragraph">
200 Success Avenue, The Town of Triple Peaks
</p>
</div>
</header>
<main class="content">
<section class="recipes" id="recipes">
<h2 class="recipes__title">Recipes</h2>
<p class="recipes__subtitle">
Check out some recipes we've collected for your home-brewing
convenience:
</p>
<ul class="recipes__videos">
<li>
<iframe
class="recipes__iframe"
src="https://www.youtube.com/embed/j6VlT_jUVPc?si=N4EoikrOl_1397Fd"
title="YouTube video player"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
referrerpolicy="strict-origin-when-cross-origin"
allowfullscreen
></iframe>
<p class="video-caption">
<span>Aeropress recipe</span> <span>~5 min</span>
</p>
</li>
<li>
<iframe
class="recipes__iframe"
src="https://www.youtube.com/embed/st571DYYTR8?si=OBuaLFiNmg8KntDd"
title="YouTube video player"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
referrerpolicy="strict-origin-when-cross-origin"
allowfullscreen
></iframe>
<p class="video-caption">
<span>French press recipe</span> <span>~15 min</span>
</p>
</li>
</ul>
</section>
<section class="reservation" id="reservations">
<h2 class="reservation__title">Book a table</h2>
<form class="reservation__form form">
<fieldset class="form__fieldset">
<label for="name-input" class="form__label">
Name *
<input
id="name-input"
required
type="text"
class="form__input"
placeholder="Name Surname"
/>
</label>
<label for="number-input" class="form__label">
Number of guests *
<input
id="number-input"
type="number"
class="form__input"
min="1"
max="8"
placeholder="1-8"
required
/>
</label>
<label for="date/time-input" class="form__label">
Date & time *
<input
id="date/time-input"
type="datetime-local"
class="form__input"
required
/>
</label>
<label for="email-input" class="form__label">
Your email *
<input
id="email-input"
required
type="email"
class="form__input"
placeholder="[email protected]"
/>
</label>
</fieldset>
<button class="form__button" type="submit">Book a table</button>
<label
for="tos-checkbox"
class="form__label form__label_type_checkbox"
>
<input
id="tos-checkbox"
type="checkbox"
class="form__checkbox"
required
/>
I agree with the terms of use
</label>
</form>
</section>
<section class="menu" id="menu">
<h2 class="menu__title">Menu</h2>
<p class="menu__subtitle">
We brew coffee from locally roasted, Fairtrade certified beans and
use biodegradable cups. All teas from our collection are $2/cup.
</p>
<ul class="menu__cards">
<li class="card">
<h3 class="card__title">Filter</h3>
<ul class="card__list">
<li class="card__list-item">
Regular (12 oz) <span class="card__list-divider"></span> $1
</li>
<li class="card__list-item">
Large (16 oz) <span class="card__list-divider"></span> $1.25
</li>
<li class="card__list-item">
XL (20 oz) <span class="card__list-divider"></span> $1.5
</li>
<li class="card__list-item">
Party-size (24 oz, decaf)
<span class="card__list-divider"></span> $1.75
</li>
<li class="card__list-item">
Iced Coffee (16 oz) <span class="card__list-divider"></span>
$1.25
</li>
</ul>
</li>
<li class="card">
<h3 class="card__title">Espresso</h3>
<ul class="card__list">
<li class="card__list-item">
Macchiato <span class="card__list-divider"></span> $2.25
</li>
<li class="card__list-item">
Cortado <span class="card__list-divider"></span> $2.5
</li>
<li class="card__list-item">
Mocha <span class="card__list-divider"></span> $3
</li>
<li class="card__list-item">
Sunrise in the Bay Area (decaf)
<span class="card__list-divider"></span> $10
</li>
</ul>
</li>
<li class="card">
<h3 class="card__title">Baked Goods</h3>
<ul class="card__list">
<li class="card__list-item">
Almond Croissant <span class="card__list-divider"></span> $2
</li>
<li class="card__list-item">
Banana Bread <span class="card__list-divider"></span> $1.75
</li>
<li class="card__list-item">
Key Lime Pie <span class="card__list-divider"></span> $3
</li>
<li class="card__list-item">
Blue Velvet Cake
<span class="card__list-divider"></span> $3.75
</li>
<li class="card__list-item">
Web Cookie <span class="card__list-divider"></span> $2
</li>
<li class="card__list-item">
Fresh Bug’uette <span class="card__list-divider"></span> $0.25
</li>
</ul>
</li>
</ul>
</section>
<section class="about" id="about">
<h2 class="about__title">About the Coffee Shop</h2>
<div class="about__content">
<p class="about__paragraph">
Our coffee shop is located in the Triple Peaks Library. It
features 6 tables and free WiFi.
</p>
<p class="about__paragraph">
Our main mission is keeping guests cozy and energized.
</p>
<p class="about__paragraph">
Besides that, we try to reduce our environmental impact — so we
don't sell single-use cups. But you can buy one of our reusable
cups!
</p>
</div>
<div class="about__circle"></div>
<div class="about__circle about__circle_animation_blurred"></div>
</section>
</main>
<footer class="footer" id="contacts">
<div class="footer__columns">
<div class="footer__column">
<img
src="./images/logo_coffeeshop_light.svg"
alt="Triple Peaks Library logo"
class="footer__logo"
/>
</div>
<div class="footer__column footer__column_content_social">
<h4 class="footer__column-heading">Social media</h4>
<ul class="footer__list">
<li class="footer__list-item">
<a href="#" class="footer__column-link"
><img
src="./images/facebook_white.svg"
alt="White Facebook Logo"
class="footer__social-icon"
/>Facebook</a
>
</li>
<li class="footer__list-item">
<a href="#" class="footer__column-link"
><img
src="./images/instagram_white.svg"
alt="White Instagram Logo"
class="footer__social-icon"
/>Instagram</a
>
</li>
</ul>
</div>
</div>
<p class="footer__copyright">© 2024 Eddison T.</p>
</footer>
</div>
</body>
</html>