-
Notifications
You must be signed in to change notification settings - Fork 0
/
portfolio.html
596 lines (571 loc) · 25.1 KB
/
portfolio.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
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
<!DOCTYPE html>
<html lang="uk">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Portfolio</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=Raleway:wght@700&family=Roboto:wght@400;500;700;900&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/modern-normalize/1.1.0/modern-normalize.min.css"
/>
<link rel="stylesheet" href="./css/main.min.css" />
</head>
<body>
<header class="page-header">
<div class="container page-header--horisontal">
<nav class="page-navigation">
<a href="./index.html" class="logo"> <span class="logo logo--blue">Web</span>Studio </a>
<ul class="site-nav list">
<li class="site-nav__item">
<a href="./index.html" class="site-nav__link">Студія</a>
</li>
<li class="site-nav__item">
<a href="./portfolio.html" class="site-nav__link site-nav__link--current"
>Портфоліо</a
>
</li>
<li class="site-nav__item"><a href="#" class="site-nav__link">Контакти</a></li>
</ul>
</nav>
<ul class="site-contacts list">
<li class="site-contacts__item">
<a href="malito:[email protected]" class="site-contacts__link">
<svg
lang="en"
aria-label="icon mail"
class="site-contacts__mail-icon"
width="16"
height="12"
>
<use href="./images/icons.svg#icon-envelope-1"></use></svg
>
</li>
<li class="site-contacts__item">
<a href="tel:+380961111111" class="site-contacts__link">
<svg
lang="en"
aria-label="icon smartphone"
class="site-contacts__tel-icon"
width="10"
height="16"
>
<use href="./images/icons.svg#icon-smartphone"></use></svg
>+38 096 111 11 11</a
>
</li>
</ul>
<button
type="button"
class="menu-button js-open-menu"
data-menu-button
aria-expanded="false"
aria-controls="mobile-menu"
>
<svg width="40" height="40" aria-label="Перемикач мобiльного меню">
<use href="./images/icons.svg#menu" class="menu-button__icon-menu"></use>
</svg>
</button>
</div>
</header>
<div class="menu-container js-menu-container" id="mobile-menu">
<div class="container mobile-container">
<button class="menu-button menu-button--positioning js-close-menu">
<svg
width="40"
height="40"
aria-label="Перемикач мобiльного меню"
class="menu-button__icon-cross"
>
<use href="./images/icons.svg#cross"></use>
</svg>
</button>
<ul class="mobile-menu list">
<li class="mobile-menu__item">
<a href="./index.html" class="mobile-menu__link">Студія</a>
</li>
<li class="mobile-menu__item">
<a href="./portfolio.html" class="mobile-menu__link modile-menu__link--current"
>Портфоліо</a
>
</li>
<li class="mobile-menu__item">
<a href="#" class="mobile-menu__link">Контакти</a>
</li>
</ul>
<div>
<ul class="mobile-menu-contacts list">
<li class="">
<a href="tel:+380961111111" class="mobile-menu-contacts__tel">+38 096 111 11 11</a>
</li>
<li class="">
<a href="malito:[email protected]" class="mobile-menu-contacts__email">
>
</li>
</ul>
<ul class="mobile-menu-links list">
<li class="mobile-menu-links__item">
<a href="#" class="mobile-social-link">Instagram</a>
</li>
<li class="mobile-menu-links__item">
<a href="#" class="mobile-social-link">Twitter</a>
</li>
<li class="mobile-menu-links__item">
<a href="#" class="mobile-social-link">Facebook</a>
</li>
<li class="mobile-menu-links__item">
<a href="#" class="mobile-social-link">LinkedIn</a>
</li>
</ul>
</div>
</div>
</div>
<main>
<section class="section">
<div class="container">
<h1 class="visually-hidden">Перелік послуг</h1>
<ul class="button-filter list">
<li><button type="button" class="button-filter__button">Усі</button></li>
<li><button type="button" class="button-filter__button">Веб-сайти</button></li>
<li><button type="button" class="button-filter__button">Додатки</button></li>
<li><button type="button" class="button-filter__button">Дизайн</button></li>
<li><button type="button" class="button-filter__button">Маркетинг</button></li>
</ul>
<ul class="cards-set list">
<li class="cards-set__item">
<a href="#" class="product">
<div class="product__wrapper">
<picture>
<source
srcset="
./images/portfolio/desktop/desk-laptop.jpg 1x,
./images/portfolio/desktop/desk-laptop2x.jpg 2x
"
media="(min-width:1200px)"
/>
<source
srcset="
./images/portfolio/tablet/laptop-tablet.jpg 1x,
./images/portfolio/tablet/laptop-tablet2x.jpg 2x
"
media="(min-width: 768px)"
/>
<source
srcset="./images/portfolio/laptop.jpg 1x, ./images/portfolio/laptop2x.jpg 2x"
media="(max-width: 767px)"
/>
<img src="./images/pic2/img(01).jpg" alt="ноутбук" />
</picture>
<p class="product__text-overlay">
Ресурс пропонує комплексні пропозиції з різним рівнем функціоналу та сервісів.
Все це дозволить відвідувачу отримати вичерпні відомості про компанію чи
приватну особу.
</p>
</div>
<div class="product__meta product__align">
<h2 class="product__title">Технокряк</h2>
<p class="product__name">Веб-сайт</p>
</div>
</a>
</li>
<li class="cards-set__item">
<a href="#" class="product">
<div class="product__wrapper">
<picture>
<source
srcset="
./images/portfolio/desktop/desk-ball.jpg 1x,
./images/portfolio/desktop/desk-ball2x.jpg 2x
"
media="(min-width:1200px)"
/>
<source
srcset="
./images/portfolio/tablet/ball-tablet.jpg 1x,
./images/portfolio/tablet/ball-tablet2x.jpg 2x
"
media="(min-width:768px)"
/>
<source
srcset="./images/portfolio/ball.jpg 1x, ./images/portfolio/ball2x.jpg 2x"
media="(max-width:767px)"
/>
<img src="./images/pic2/img(02).jpg" alt="чоловіки грають у баскетбол" />
</picture>
<p class="product__text-overlay">
Ресурс пропонує комплексні пропозиції з різним рівнем функціоналу та сервісів.
Все це дозволить відвідувачу отримати вичерпні відомості про компанію чи
приватну особу.
</p>
</div>
<div class="product__meta">
<h2 class="product__title">
Постер <span lang="en"> New Orlean vs Golden Star</span>
</h2>
<p class="product__name">Дизайн</p>
</div>
</a>
</li>
<li class="cards-set__item">
<a href="#" class="product">
<div class="product__wrapper">
<picture>
<source
srcset="
./images/portfolio/desktop/desk-sea.jpg 1x,
./images/portfolio/desktop/desk-sea2x.jpg 2x
"
media="(min-width:1200px)"
/>
<source
srcset="
./images/portfolio/tablet/seafood-tablet.jpg 1x,
./images/portfolio/tablet/seafood-tablet2x.jpg 2x
"
media="(min-width:768px)"
/>
<source
srcset="
./images/portfolio/seafood.jpg 1x,
./images/portfolio/seafood2x.jpg 2x
"
media="(max-width: 767px)"
/>
<img src="./images/pic2/img(03).jpg" alt="логотип ресторану" />
</picture>
<p class="product__text-overlay">
Ресурс пропонує комплексні пропозиції з різним рівнем функціоналу та сервісів.
Все це дозволить відвідувачу отримати вичерпні відомості про компанію чи
приватну особу.
</p>
</div>
<div class="product__meta">
<h2 class="product__title">Ресторан <span lang="en">Seafood</span></h2>
<p class="product__name">Додаток</p>
</div>
</a>
</li>
<li class="cards-set__item">
<a href="#" class="product">
<div class="product__wrapper">
<picture>
<source
srcset="
./images/portfolio/desktop/desk-ear.jpg 1x,
./images/portfolio/desktop/desk-ear2x.jpg 2x
"
media="(min-width:1200px)"
/>
<source
srcset="
./images/portfolio/tablet/earpod-tablet.jpg 1x,
./images/portfolio/tablet/earpod-tablet2x.jpg 2x
"
media="(min-width:768px)"
/>
<source
srcset="
./images/portfolio/earpods.jpg 1x,
./images/portfolio/earpods2x.jpg 2x
"
media="(max-width: 767px)"
/>
<img src="./images/pic2/img(04).jpg" alt="навушники" />
</picture>
<p class="product__text-overlay">
Ресурс пропонує комплексні пропозиції з різним рівнем функціоналу та сервісів.
Все це дозволить відвідувачу отримати вичерпні відомості про компанію чи
приватну особу.
</p>
</div>
<div class="product__meta">
<h2 class="product__title">Проєкт <span lang="en">Prime</span></h2>
<p class="product__name">Маркетинг</p>
</div>
</a>
</li>
<li class="cards-set__item">
<a href="#" class="product">
<div class="product__wrapper">
<picture>
<source
srcset="
./images/portfolio/desktop/desk-box.jpg 1x,
./images/portfolio/desktop/desk-box2x.jpg 2x
"
media="(min-width:1200px)"
/>
<source
srcset="
./images/portfolio/tablet/box-tablet.jpg 1x,
./images/portfolio/tablet/box-tablet2x.jpg 2x
"
media="(min-width: 768px)"
/>
<source
srcset="./images/portfolio/box.jpg 1x, ./images/portfolio/box2x.jpg 2x"
media="(max-width: 767px)"
/>
<img src="./images/pic2/img(05).jpg" alt="дві коробки" />
</picture>
<p class="product__text-overlay">
Ресурс пропонує комплексні пропозиції з різним рівнем функціоналу та сервісів.
Все це дозволить відвідувачу отримати вичерпні відомості про компанію чи
приватну особу.
</p>
</div>
<div class="product__meta">
<h2 class="product__title">Проєкт <span lang="en">Boxes</span></h2>
<p class="product__name">Додаток</p>
</div>
</a>
</li>
<li class="cards-set__item">
<a href="#" class="product">
<div class="product__wrapper">
<picture>
<source
srcset="
./images/portfolio/desktop/desk-scr.jpg 1x,
./images/portfolio/desktop/desk-scr2x.jpg 2x
"
media="(min-width:1200px)"
/>
<source
srcset="
./images/portfolio/tablet/screen-tablet.jpg 1x,
./images/portfolio/tablet/screen-tablet2x.jpg 2x
"
media="(min-width: 768px)"
/>
<source
srcset="./images/portfolio/screen.jpg 1x, ./images/portfolio/screen2x.jpg 2x"
media="(max-width:767px)"
/>
<img src="./images/pic2/img(06).jpg" alt="монітор" />
</picture>
<p class="product__text-overlay">
Ресурс пропонує комплексні пропозиції з різним рівнем функціоналу та сервісів.
Все це дозволить відвідувачу отримати вичерпні відомості про компанію чи
приватну особу.
</p>
</div>
<div class="product__meta">
<h2 class="product__title"><span lang="en">Inspiration has no Borders</span></h2>
<p class="product__name">Веб-сайт</p>
</div>
</a>
</li>
<li class="cards-set__item">
<a href="#" class="product">
<div class="product__wrapper">
<picture>
<source
srcset="
./images/portfolio/desktop/desk-lim.jpg 1x,
./images/portfolio/desktop/desk-lim2x.jpg 2x
"
media="(min-width:1200px)"
/>
<source
srcset="
./images/portfolio/tablet/limited-tablet.jpg 1x,
./images/portfolio/tablet/limited-tablet2x.jpg 2x
"
media="(min-width: 767px)"
/>
<source
srcset="
./images/portfolio/limited.jpg 1x,
./images/portfolio/limited2x.jpg 2x
"
media="(max-width:767px)"
/>
<img src="./images/pic2/img(07).jpg" alt="журнал" />
</picture>
<p class="product__text-overlay">
Ресурс пропонує комплексні пропозиції з різним рівнем функціоналу та сервісів.
Все це дозволить відвідувачу отримати вичерпні відомості про компанію чи
приватну особу.
</p>
</div>
<div class="product__meta">
<h2 class="product__title">Видання <span lang="en">Limited Edition</span></h2>
<p class="product__name">Дизайн</p>
</div>
</a>
</li>
<li class="cards-set__item">
<a href="#" class="product">
<div class="product__wrapper">
<picture>
<source
srcset="
./images/portfolio/desktop/desk-lab.jpg 1x,
./images/portfolio/desktop/desk-lab2x.jpg 2x
"
media="(min-width:1200px)"
/>
<source
srcset="
./images/portfolio/tablet/lab-tablet.jpg 1x,
./images/portfolio/tablet/lab-tablet2x.jpg 2x
"
media="(min-width:768px)"
/>
<source
srcset="./images/portfolio/lab.jpg 1x, ./images/portfolio/lab2x.jpg 2x"
media="(max-width:767px)"
/>
<img src="./images/pic2/img(08).jpg" alt="етикетка" />
</picture>
<p class="product__text-overlay">
Ресурс пропонує комплексні пропозиції з різним рівнем функціоналу та сервісів.
Все це дозволить відвідувачу отримати вичерпні відомості про компанію чи
приватну особу.
</p>
</div>
<div class="product__meta">
<h2 class="product__title">Проєкт <span lang="en">LAB</span></h2>
<p class="product__name">Маркетинг</p>
</div>
</a>
</li>
<li class="cards-set__item">
<a href="#" class="product">
<div class="product__wrapper">
<picture>
<source
srcset="
./images/portfolio/desktop/d-bus.jpg 1x,
./images/portfolio/desktop/d-bus2x.jpg 2x
"
media="(min-width:1200px)"
/>
<source
srcset="
./images/portfolio/tablet/busines-tablet2x.jpg 1x,
./images/portfolio/tablet/busines-tablet2x.jpg 2x
"
media="(min-width:768px)"
/>
<source
srcset="
./images/portfolio/business.jpg 1x,
./images/portfolio/business2x.jpg 2x
"
media="(max-width:767px)"
/>
<img src="./images/pic2/img(09).jpg" alt="чоловік друкує на ноутбуці" />
</picture>
<p class="product__text-overlay">
Ресурс пропонує комплексні пропозиції з різним рівнем функціоналу та сервісів.
Все це дозволить відвідувачу отримати вичерпні відомості про компанію чи
приватну особу.
</p>
</div>
<div class="product__meta">
<h2 class="product__title"><span lang="en">Growing Business</span></h2>
<p class="product__name">Додаток</p>
</div>
</a>
</li>
</ul>
</div>
</section>
</main>
<!-- Footer -->
<footer class="footer">
<div class="container footer--baseline">
<div>
<a href="./index.html" class="logo logo--blue"
>Web<span class="logo logo--white">Studio</span>
</a>
<address>
<ul class="footer-address list">
<li>
<a
href="https://goo.gl/maps/UHNFEPTADkzNhCQ2A"
target="_blank"
rel="noopener noreferrer nofollow"
class="footer-address__map-link"
>м. Київ, пр-т Лесі Українки, 26</a
>
</li>
<li>
<a href="malito:[email protected]" class="footer-address__contacts"
>
</li>
<li>
<a href="tel:+380991111111" class="footer-address__contacts">+38 099 111 11 11</a>
</li>
</ul>
</address>
</div>
<div class="footer-join">
<p class="footer-join__text">приєднуйтесь</p>
<ul class="footer-lists list">
<li class="social-lists__item">
<a href="" class="social-link social-link--fill">
<svg lang="en" aria-label="icon instagram" width="20" height="20">
<use href="./images/icons.svg#icon-instagram-2"></use>
</svg>
</a>
</li>
<li class="social-lists__item">
<a href="" class="social-link social-link--fill">
<svg lang="en" aria-label="icon twitter" width="20" height="20">
<use href="./images/icons.svg#icon-twitter-1"></use>
</svg>
</a>
</li>
<li class="social-lists__item">
<a href="" class="social-link social-link--fill">
<svg lang="en" aria-label="icon facebook" width="20" height="20">
<use href="./images/icons.svg#icon-facebook-1"></use>
</svg>
</a>
</li>
<li class="social-lists__item">
<a href="" class="social-link social-link--fill">
<svg lang="en" aria-label="icon linkedin" width="20" height="20">
<use href="./images/icons.svg#icon-linkedin-1"></use>
</svg>
</a>
</li>
</ul>
</div>
<div class="subscribe-form">
<p class="subscribe-form__text">Підпишіться на розсилку</p>
<form class="form-field">
<label>
<input
type="email"
name="user-email"
id="email"
placeholder="E-mail"
class="form-field__input"
/>
</label>
<button type="submit" class="button-base button-base--resize">
Підписатися
<svg lang="en" aria-label="icon send" width="24" height="24">
<use href="./images/icons.svg#icon-icon-send"></use>
</svg>
</button>
</form>
</div>
</div>
</footer>
<script src="./js/mobile-menu.js"></script>
</body>
</html>