generated from tripleten-com/se_project_coffeeshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
289 lines (285 loc) · 10.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="keywords" content="html, css" />
<meta name="description" content="Coffee shop landing page" />
<meta name="author" content="Elvin Akhmedov" />
<link rel="stylesheet" href="pages/index.css" />
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<title>Coffee Shop</title>
<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:wght@400;500;700&family=Noto+Serif:ital@0;1&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div class="page">
<header class="header">
<nav class="nav">
<img
src="./images/logo_coffeeshop_dark.svg"
alt="Coffeeshop logo"
class="nav__logo"
/>
<ul class="nav__links">
<li><a href="#recipes" class="nav__link">Recipes</a></li>
<li><a href="#book_a_table" class="nav__link">Book a table</a></li>
<li><a href="#menu" class="nav__link">Menu</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>
<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>
<div>
<img
src="./images/inside_coffee_shop.png"
alt="Image of coffee shop"
class="header__image"
/>
</div>
</header>
<main class="content">
<section class="recipes">
<h2 class="recipes__title" id="recipes">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=KAoxbvH3_cAg_Zns"
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="recipes__video-caption">
<span>Aeropress recipe</span> ~5 min
</p>
</li>
<li>
<iframe
class="recipes__iframe"
src="https://www.youtube.com/embed/st571DYYTR8?si=LQ68ZeTeS34YNCge"
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="recipes__video-caption">
<span>French press recipe</span> ~15 min
</p>
</li>
</ul>
</section>
<section class="reservation" id="book_a_table">
<h2 class="reservation__title">Book a table</h2>
<form action="#" class="reservation__form form">
<fieldset class="form__fieldset">
<label for="name" class="form__label">
Name *<input
type="text"
placeholder="Name Surname"
class="form__input"
id="name"
required
/>
</label>
<label for="number_of_guests" class="form__label">
Number of guests *<input
type="number"
placeholder="1-8"
class="form__input"
id="number_of_guests"
required
/>
</label>
<label for="data_time" class="form__label">
Data & time *
<input
type="datetime-local"
class="form__input"
id="data_time"
required
/>
</label>
<label for="your_email" class="form__label">
Your email *
<input
type="email"
placeholder="email@email.com"
class="form__input"
id="your_email"
required
/>
</label>
</fieldset>
<button type="submit" class="form__button">Book a table</button>
<label
for="I_agree_with_the_terms_of_use"
class="form__label form__label_type_checkbox"
>
<input
type="checkbox"
class="form__checkbox"
id="I_agree_with_the_terms_of_use"
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">
<div class="footer__content">
<img
src="./images/logo_coffeeshop_light.svg"
alt="tripleten logo"
class="footer__logo"
/>
<div class="footer__social">
<h3 class="footer__heading">Social media</h3>
<ul class="footer__list">
<li class="footer__list-item">
<a href="#" class="footer__social-link">
<img
src="./images/facebook_white.svg"
alt="Facebook logo"
class="footer__social-icon"
/>Facebook
</a>
</li>
<li class="footer__list-item">
<a href="#" class="footer__social-link">
<img
src="./images/instagram_white.svg"
alt="Instagram logo"
class="footer__social-icon"
/>Instagram
</a>
</li>
</ul>
</div>
</div>
<p class="footer__copyright">© Elvin Akhmedov</p>
</footer>
</div>
</body>
</html>