-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
460 lines (430 loc) · 19.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
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
<!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=Montserrat:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet" />
<link rel="icon" type="images/x-icon" href="./icons/chocolate.svg" />
<title>Simply Chocolate</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/modern-normalize/2.0.0/modern-normalize.min.css"
integrity="sha512-4xo8blKMVCiXpTaLzQSLSw3KFOVPWhm/TRtuPVc4WG6kUgjH6J03IBuG7JZPkcWMxJ5huwaBpOpnwYElP/m6wg=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="./css/styles.css" />
<link rel="stylesheet" href="./css/media.css" />
</head>
<body>
<!--------------------------- HEADER --------------------------->
<header class="header">
<div class="container header-container">
<nav class="header-navigation">
<a href="/" class="header-logo"><span>Simply</span> chocolate
<img src="./icons/chocolate.svg" alt="logo image" width="24" height="24" />
</a>
<ul class="header-menu">
<li class="header-menu-item">
<a href="#home" class="header-menu-link">Home</a>
</li>
<li class="header-menu-item">
<a href="#how-made" class="header-menu-link">How it`s made?</a>
</li>
<li class="header-menu-item">
<a href="#loved" class="header-menu-link">Chocolate is loved</a>
</li>
</ul>
</nav>
<ul class="header-soc">
<li class="header-soc-item">
<a href="#" aria-label="instagram" target="_blank" rel="noopener noreferrer" class="header-soc-link">
<svg class="header-soc-icon" width="24" height="24">
<use href="./icons/icons.svg#icon-instagram"></use>
</svg>
</a>
</li>
<li class="header-soc-item">
<a href="#" aria-label="twitter" target="_blank" rel="noopener noreferrer" class="header-soc-link">
<svg class="header-soc-icon" width="24" height="24">
<use href="./icons/icons.svg#icon-twitter"></use>
</svg>
</a>
</li>
</ul>
<!--------------------------- burger menu --------------------------->
<button type="button" class="open-menu-button" data-burger-open>
<svg class="burger-icon" width="28" height="28" stroke="var(--black-color)">
<use href="./icons/icons.svg#icon-burger"></use>
</svg>
</button>
</div>
<div class="mob-menu is-hidden" data-burger>
<div>
<button type="button" class="close-menu-button" data-burger-close>
<svg class="close-burger-icon" width="28" height="28" stroke="var(--black-color)">
<use href="./icons/icons.svg#icon-close"></use>
</svg>
</button>
<ul class="mob-menu-list">
<li class="mob-menu-item">
<a href="#home" class="mob-menu-link">Home</a>
</li>
<li class="mob-menu-item">
<a href="#how-made" class="mob-menu-link">How it`s made?</a>
</li>
<li class="mob-menu-item">
<a href="#loved" class="mob-menu-link">Chocolate is loved</a>
</li>
</ul>
</div>
<ul class="mob-soc">
<li class="mob-soc-item">
<a href="" aria-label="instagram" target="_blank" rel="noopener noreferrer" class="mob-soc-link">
<svg class="mob-soc-icon" width="24" height="24">
<use href="./icons/icons.svg#icon-instagram"></use>
</svg>
</a>
</li>
<li class="mob-soc-item">
<a href="" aria-label="twitter" target="_blank" rel="noopener noreferrer" class="mob-soc-link">
<svg class="mob-soc-icon" width="24" height="24">
<use href="./icons/icons.svg#icon-twitter"></use>
</svg>
</a>
</li>
</ul>
</div>
</header>
<main>
<!--------------------------- HERO --------------------------->
<section id="home" class="hero">
<div class="container hero-container">
<h1 class="hero-title">
Treat yourself or a loved one to our finest ingredients for a moment
of pure delight!
</h1>
<div class="hero-buttons">
<button type="button" class="hero-button">Buy now</button>
<a href="#how-made" class="hero-link">How it`s made</a>
<a href="#footer" class="hero-scroll-link">scroll down <span>
<svg class="hero-arrow-icon" width="16" height="16">
<use href="./icons/icons.svg#icon-arrow"></use>
</svg>
</span></a>
</div>
</div>
</section>
<!--------------------------- BENEFITS --------------------------->
<section class="benefits">
<div class="container">
<h2 hidden class="section-title">Benefits</h2>
<ul class="benefits-list">
<li class="benefits-item">
<h3 class="benefits-subtitle">Unsurpassed taste</h3>
<p class="benefits-text">
Crafted with the finest quality cocoa beans and a dedication to
perfection, each bite is a decadent experience that simply
cannot be matched. Savor the richness and complexity of our
Unsurpassed Taste and discover a new level of chocolate bliss.
</p>
</li>
<li class="benefits-item">
<h3 class="benefits-subtitle">Affordable price</h3>
<p class="benefits-text">
Indulge in high-quality chocolate without breaking the bank with
Simply Chocolate's selection of affordable treats. Enjoy
mouth-watering truffles and velvety chocolate bars without
sacrificing taste or quality. Browse our selection and indulge
in affordable luxury today.
</p>
</li>
<li class="benefits-item">
<h3 class="benefits-subtitle">Own production</h3>
<p class="benefits-text">
We take pride in our own production process, ensuring that every
step is carefully crafted to perfection. From selecting the
finest ingredients to handcrafting each piece, our attention to
detail is evident in every bite.
</p>
</li>
</ul>
</div>
</section>
<!--------------------------- PRODUCTS --------------------------->
<section class="products">
<div class="container">
<h2 class="section-title products-title">
It all adds up to one exceptional <span>taste</span> sensation
</h2>
<p class="products-text">
At Simply Chocolate, we believe that the secret to exceptional
chocolate is in the details. From the sourcing of the finest
ingredients to the careful crafting of each individual piece, every
step of our process adds up to one exceptional taste sensation.
</p>
<ul class="products-list">
<li class="products-item">
<img srcset="
./images/products/milk-chocolate.png 1x,
./images/products/milk-chocolate-2x.png 2x
" src="./images/products/milk-chocolate.png" alt="chocolate" width="206" height="160"
class="products-image" />
<h3 class="products-subtitle light">Milk chocolate</h3>
<div class="products-cover-block">
<p class="products-cover-title">Milk chocolate</p>
<ul class="cover-buttons-list">
<li class="cover-buttons-item"><button type="button" class="cover-product-button">chocolate</button>
</li>
<li class="cover-buttons-item"><button type="button" class="cover-benefit-button">the benefits</button>
</li>
</ul>
<p class="products-cover-text">Milk chocolate is a solid chocolate confectionery containing cocoa, sugar
and milk. It is the most consumed type of chocolate. Chocolate was originally sold and consumed as a
beverage in pre-Columbian times.</p>
</div>
</li>
<li class="products-item">
<img srcset="
./images/products/milk.png 1x,
./images/products/milk-2x.png 2x" src=" ./images/products/milk.png" alt="milk" width="206"
height="160" class="products-image" />
<h3 class="products-subtitle dark">Milk</h3>
<div class="products-cover-block">
<p class="products-cover-title">Milk</p>
<ul class="cover-buttons-list">
<li class="cover-buttons-item"><button type="button" class="cover-product-button">milk</button></li>
<li class="cover-buttons-item"><button type="button" class="cover-benefit-button">the benefits</button>
</li>
</ul>
<p class="products-cover-text">Milk is a white liquid food produced by the mammary glands of mammals. It
is the primary source of nutrition for young mammals (including breastfed human infants) before they are
able to digest solid food.</p>
</div>
</li>
<li class="products-item">
<img srcset="
./images/products/nuts.png 1x,
./images/products/nuts-2x.png 2x" src=" ./images/products/nuts.png" alt="nuts" width="206"
height="160" class="products-image" />
<h3 class="products-subtitle light">Nuts</h3>
<div class="products-cover-block">
<p class="products-cover-title">Nuts</p>
<ul class="cover-buttons-list">
<li class="cover-buttons-item"><button type="button" class="cover-product-button">nuts</button></li>
<li class="cover-buttons-item"><button type="button" class="cover-benefit-button">the benefits</button>
</li>
</ul>
<p class="products-cover-text">Milk is a white liquid food produced by the mammary glands of mammals. It
is the primary source of nutrition for young mammals (including breastfed human infants) before they are
able to digest solid food.</p>
</div>
</li>
<li class="products-item">
<img srcset="
./images/products/semi-sweet-chocolate.png 1x,
./images/products/semi-sweet-chocolate-2x.png 2x" src=" ./images/products/semi-sweet-chocolate.png"
alt="chocolate drops" width="206" height="160" class="products-image" />
<h3 class="products-subtitle dark">Semi-sweet chocolate</h3>
<div class="products-cover-block">
<p class="products-cover-title">Semi-sweet chocolate</p>
<ul class="cover-buttons-list">
<li class="cover-buttons-item"><button type="button" class="cover-product-button">sweet
chocolate</button></li>
<li class="cover-buttons-item"><button type="button" class="cover-benefit-button">the benefits</button>
</li>
</ul>
<p class="products-cover-text">Semi-sweet chocolate has a cocoa solid content of 35 to 65%. One of the
best ways to gain an understanding of this type of chocolate is to compare it to a different type of
chocolate.</p>
</div>
</li>
</ul>
</div>
</section>
<!--------------------------- HOW-MADE --------------------------->
<section class="made" id="how-made">
<div class="container">
<h2 class="section-title made-title">How it`s <span>made?</span></h2>
<div class="made-wrap">
<!-- <img src="./images//image.jpg" alt="bowl with chocolate" width="600" height="400" class="made-image" /> -->
<picture>
<source srcset="./images/made/made-mobile-1x.jpg 1x, ./images/made/made-mobile-2x.jpg 2x"
media="(max-width:767.98px)" type="image/png" />
<source srcset="./images/made/made-tablet-1x.jpg 1x, ./images/made/made-tablet-2x.jpg 2x"
media="(max-width:1199.98px)" type="image/png" />
<source srcset="./images/made/made-desktop-1x.jpg 1x, ./images/made/made-desktop-2x.jpg 2x"
media="(min-width:1200px)" type="image/png" />
<img src="./images/made/made-desktop-1x.jpg" alt="bowl with chocolate" width="600" height="400"
class="made-image" />
</picture>
<div class="made-content">
<p class="made-text">
Try our chocolates today and discover the perfect balance of
flavor
</p>
<ul class="made-list">
<li class="made-item">
<p class="made-item-text">
Heat the milk in a saucepan without bringing it to a boil.
Add sugar and cocoa powder.
</p>
</li>
<li class="made-item">
<p class="made-item-text">
At the same time, prepare a water bath. Melt the butter on
it.
</p>
</li>
<li class="made-item">
<p class="made-item-text">
"Mix" the milk mixture and already liquid butter. Mix
thoroughly with a silicone spatula so that the mass becomes
uniform and silky.
</p>
</li>
<li class="made-item">
<p class="made-item-text">
Heat the mixture over low heat, letting it barely boil.
</p>
</li>
<li class="made-item">
<p class="made-item-text">
Pour the chocolate into special containers (can be replaced
with ice molds). Allow to cool and harden.
</p>
</li>
</ul>
</div>
</div>
</div>
</section>
<!--------------------------- LOVED --------------------------->
<section class="loved" id="loved">
<div class="container">
<h2 class="section-title loved-title"><span>Chocolate</span> is loved</h2>
<ul class="loved-list">
<li class="loved-item">
<img src="./images/review-1.jpg" alt="Victoria Dobrzhanska photo" width="80" height="80"
class="loved-image" />
<h3 class="loved-name">Victoria Dobrzhanska</h3>
<p class="loved-feedback">
I love this chocolate bar. Perfect combination of light crispy
wafer, covered in a thin layer chocolate.
</p>
</li>
<li class="loved-item">
<img src="./images/review-2.jpg" alt="Nazar Babenko photo" width="80" height="80" class="loved-image" />
<h3 class="loved-name">Nazar Babenko</h3>
<p class="loved-feedback">
This chocolate confection is a delight! A delight! The wafer is
light and crisp, the hazelnut cream is smooth, and the chocolate
is good.
</p>
</li>
<li class="loved-item">
<img src="./images/review-3.jpg" alt="Olena Kampusch photo" width="80" height="80" class="loved-image" />
<h3 class="loved-name">Olena Kampusch</h3>
<p class="loved-feedback">
Chocolate is a family favourite treat. Love the delicious smooth
chocolate and the creaminess inside. The wafer is soft but
crunchy.
</p>
</li>
</ul>
<button type="button" class="loved-button" data-modal-open>Leave a review</button>
</div>
</section>
</main>
<!--------------------------- FOOTER --------------------------->
<footer class="footer" id="footer">
<div class="container">
<div class="footer-top">
<p class="footer-title">
<span>Chocolate</span> a delicious cure for a bad day
</p>
<div class="footer-contacts-wrap">
<p class="footer-text">Contact us</p>
<address class="footer-address">
<ul class="footer-contacts">
<li class="footer-contacts-item">
<a href="tel:+380684439426" class="footer-contacts-link">+380 (68) 443-94-26</a>
</li>
<li class="footer-contacts-item">
<a href="mailto:[email protected]" class="footer-contacts-link">[email protected]</a>
</li>
</ul>
</address>
</div>
</div>
<div class="footer-bottom">
<nav class="footer-navigation">
<ul class="footer-menu">
<li class="footer-menu-item">
<a href="#home" class="footer-menu-link">Home</a>
</li>
<li class="footer-menu-item">
<a href="#how-made" class="footer-menu-link">How it`s made?</a>
</li>
<li class="footer-menu-item">
<a href="#loved" class="footer-menu-link">Chocolate is loved</a>
</li>
</ul>
</nav>
<form class="subscribe-form">
<label for="subs-email" aria-label="email for subscribtion"></label>
<input type="email" id="subs-email" name="subs-email" placeholder="Enter your email" class="subs-input">
<button type="submit" class="subs-button">Subscribe</button>
</form>
</div>
</div>
</footer>
<div class="backdrop is-hidden" data-modal>
<div class="modal">
<button type="button" class="close-modal-button" data-modal-close>
<svg class="close-icon" width="28" height="28">
<use href="./icons/icons.svg#icon-close"></use>
</svg>
</button>
<p class="modal-title section-title">Leave a review about <span>our chocolate</span></p>
<form class="modal-form">
<div class="modal-input-wrap">
<input type="text" name="user-name" placeholder="Name" required class="modal-input">
<svg class="input-icon" width="24" height="24">
<use href="./icons/icons.svg#icon-user"></use>
</svg>
</div>
<div class="modal-input-wrap">
<input type="email" name="user-email" placeholder="Email" class="modal-input">
<svg class="input-icon" width="24" height="24">
<use href="./icons/icons.svg#icon-mail"></use>
</svg>
</div>
<div class="modal-input-wrap">
<input type="tel" name="user-phone" placeholder="Phone number" required class="modal-input">
<svg class="input-icon" width="24" height="24">
<use href="./icons/icons.svg#icon-phone"></use>
</svg>
</div>
<div class="modal-input-wrap">
<textarea name="feedback" placeholder="Enter text" class="modal-textarea"></textarea>
</div>
<div class="modal-input-wrap">
<input type="checkbox" name="policy" id="policy" class="input-check visually-hidden" value="true">
<label for="policy" class="check-text">
<span>
<svg class="check-icon" width="10" height="10">
<use href="./icons/icons.svg#icon-check"></use>
</svg>
</span>
<p>I accept the terms and conditions of the <a href="">Privacy
Policy</a></p>
</label>
</div>
<button type="submit" class="send-button">Send</button>
</form>
</div>
</div>
<script src="./js/modal.js"></script>
<script src="./js/burger.js"></script>
</body>
</html>