-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
766 lines (742 loc) · 24.1 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
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
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<!-- Modern Normalize CSS -->
<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"
/>
<!-- External CSS -->
<link rel="stylesheet" href="css/styles.css" />
<!-- Fonts -->
<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@800&family=Roboto:wght@400;500;700;900&display=swap"
rel="stylesheet"
/>
<link rel="shortcut icon" href="images/favicon.ico" />
<title>Web Studio</title>
</head>
<body>
<!-- Page header -->
<header class="top-line">
<div class="header-container container">
<!-- Navbar -->
<nav class="container nav-menu-section">
<a href="#" class="logo logo-header"
><span class="text-color-iris">WEB</span>STUDIO</a
>
<ul class="nav-items">
<li><a href="#" class="main-link">Studio</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="#">Contacts</a></li>
</ul>
</nav>
<!-- Navbar End -->
<!-- Contacts section -->
<address>
<ul class="contacts-items">
<li>
<a href="mailto:[email protected]">[email protected]</a>
</li>
<li>
<a href="tel:+110001111111">+11 (000) 111-11-11</a>
</li>
</ul>
</address>
<!-- End Contacts section -->
</div>
</header>
<!-- End page header -->
<!-- Main section -->
<main>
<!-- Hero section -->
<section class="dark-bg-hero">
<div class="container hero-container">
<h1 class="heading-main">
Effective Solutions <br />for Your Business
</h1>
<button type="button" class="primary-btn" data-modal-open>
Order Service
</button>
</div>
</section>
<!-- End Hero section -->
<!-- Benefits section -->
<section class="benefits-section">
<div class="container">
<h2 class="visually-hidden">Our Benefits</h2>
<ul
class="benefit-item-section heading-section sub-paragraph benefits benefit-icon"
>
<li class="benefits">
<div>
<svg>
<use
width="64"
height="64"
href="images/icons.svg#icon-antenna"
></use>
</svg>
</div>
<h3 class="heading-section">Strategy</h3>
<p>
Our goal is to identify the business problem to walk away with
the perfect and creative solution.
</p>
</li>
<li class="benefits">
<div>
<svg>
<use
width="64"
height="64"
href="images/icons.svg#icon-clock"
></use>
</svg>
</div>
<h3 class="heading-section">Punctuality</h3>
<p>
Bring the key message to the brand's audience for the best price
within the shortest possible time.
</p>
</li>
<li class="benefits">
<div>
<svg>
<use
width="64"
height="64"
href="images/icons.svg#icon-diagram"
></use>
</svg>
</div>
<h3 class="heading-section">Diligence</h3>
<p>
Research and confirm brands that present the strongest digital
growth opportunities and minimize risk.
</p>
</li>
<li class="benefits">
<div>
<svg>
<use
width="64"
height="64"
href="images/icons.svg#icon-astronaut"
></use>
</svg>
</div>
<h3 class="heading-section">Technologies</h3>
<p>
Design practice focused on digital experiences. We bring forth a
deep passion for problem-solving.
</p>
</li>
</ul>
</div>
</section>
<!-- End Benefits section -->
<!-- Projects section -->
<section class="projects-section">
<div class="container flex-column">
<h2 class="heading-sub">What are we doing</h2>
<ul class="projects-items-section">
<li class="projects-items-section">
<img
src="images/mac_with_diagrams.jpg"
alt="Mac with some diagrams"
width="360"
height="300"
/>
</li>
<li class="projects-items-section">
<img
src="images/iphone_multi_screen_whatsapp.jpg"
alt="iPhone multi screen WhatsApp Messenger"
width="360"
height="300"
/>
</li>
<li class="projects-items-section">
<img
src="images/iphone_design_website.jpg"
alt="iPhone displaying a website whose design is in the photo on a MacBook"
width="360"
height="300"
/>
</li>
</ul>
</div>
</section>
<!-- End project section -->
<!-- Team section -->
<section class="light-bg">
<div class="container flex-column">
<h2 class="heading-sub">Our Team</h2>
<ul
class="team-items-section heading-section sub-paragraph team-image"
>
<li class="heading-section">
<img
src="images/marc_guerrero.jpg"
alt="Picture of Mark Guerrero the Product Designer"
width="264"
height="260"
/>
<div class="team-image-caption">
<h3 class="heading-section">Mark Guerrero</h3>
<p class="sub-paragraph">Product Designer</p>
<ul class="social-media-icons team-social-media-icons">
<li>
<a
href="https://www.instagram.com"
target="_blank"
rel="noopener noreferrer"
>
<svg>
<use
width="16"
height="16"
href="images/icons.svg#icon-instagram"
></use>
</svg>
</a>
</li>
<li>
<a
href="https://x.com"
target="_blank"
rel="noopener noreferrer"
>
<svg>
<use
width="16"
height="16"
href="images/icons.svg#icon-twitter"
></use>
</svg>
</a>
</li>
<li>
<a
href="https://www.facebook.com"
target="_blank"
rel="noopener noreferrer"
>
<svg>
<use
width="16"
height="16"
href="images/icons.svg#icon-facebook"
></use>
</svg>
</a>
</li>
<li>
<a
href="https://www.linkedin.com"
target="_blank"
rel="noopener noreferrer"
>
<svg>
<use
width="16"
height="16"
href="images/icons.svg#icon-linkedin"
></use>
</svg>
</a>
</li>
</ul>
</div>
</li>
<li class="heading-section">
<img
src="images/tom_ford.jpg"
alt="Picture of Tom Ford the Frontend Developer"
width="264"
height="260"
/>
<div class="team-image-caption">
<h3 class="heading-section">Tom Ford</h3>
<p class="sub-paragraph">Frontend Developer</p>
<ul class="social-media-icons team-social-media-icons">
<li>
<a
href="https://www.instagram.com"
target="_blank"
rel="noopener noreferrer"
>
<svg>
<use
width="16"
height="16"
href="images/icons.svg#icon-instagram"
></use>
</svg>
</a>
</li>
<li>
<a
href="https://x.com"
target="_blank"
rel="noopener noreferrer"
>
<svg>
<use
width="16"
height="16"
href="images/icons.svg#icon-twitter"
></use>
</svg>
</a>
</li>
<li>
<a
href="https://www.facebook.com"
target="_blank"
rel="noopener noreferrer"
>
<svg>
<use
width="16"
height="16"
href="images/icons.svg#icon-facebook"
></use>
</svg>
</a>
</li>
<li>
<a
href="https://www.linkedin.com"
target="_blank"
rel="noopener noreferrer"
>
<svg>
<use
width="16"
height="16"
href="images/icons.svg#icon-linkedin"
></use>
</svg>
</a>
</li>
</ul>
</div>
</li>
<li class="heading-section">
<img
src="images/camila_garcia.jpg"
alt="Picture of Camila Garcia - Marketing"
width="264"
height="260"
/>
<div class="team-image-caption">
<h3 class="heading-section">Camila Garcia</h3>
<p class="sub-paragraph">Marketing</p>
<ul class="social-media-icons team-social-media-icons">
<li>
<a
href="https://www.instagram.com"
target="_blank"
rel="noopener noreferrer"
>
<svg>
<use
width="16"
height="16"
href="images/icons.svg#icon-instagram"
></use>
</svg>
</a>
</li>
<li>
<a
href="https://x.com"
target="_blank"
rel="noopener noreferrer"
>
<svg>
<use
width="16"
height="16"
href="images/icons.svg#icon-twitter"
></use>
</svg>
</a>
</li>
<li>
<a
href="https://www.facebook.com"
target="_blank"
rel="noopener noreferrer"
>
<svg>
<use
width="16"
height="16"
href="images/icons.svg#icon-facebook"
></use>
</svg>
</a>
</li>
<li>
<a
href="https://www.linkedin.com"
target="_blank"
rel="noopener noreferrer"
>
<svg>
<use
width="16"
height="16"
href="images/icons.svg#icon-linkedin"
></use>
</svg>
</a>
</li>
</ul>
</div>
</li>
<li class="heading-section">
<img
src="images/daniel_wilson.jpg"
alt="Picture of Daniel Wilson the UI Designer"
width="264"
height="260"
/>
<div class="team-image-caption">
<h3 class="heading-section">Daniel Wilson</h3>
<p class="sub-paragraph">UI Designer</p>
<ul class="social-media-icons team-social-media-icons">
<li>
<a
href="https://www.instagram.com"
target="_blank"
rel="noopener noreferrer"
>
<svg>
<use
width="16"
height="16"
href="images/icons.svg#icon-instagram"
></use>
</svg>
</a>
</li>
<li>
<a
href="https://x.com"
target="_blank"
rel="noopener noreferrer"
>
<svg>
<use
width="16"
height="16"
href="images/icons.svg#icon-twitter"
></use>
</svg>
</a>
</li>
<li>
<a
href="https://www.facebook.com"
target="_blank"
rel="noopener noreferrer"
>
<svg>
<use
width="16"
height="16"
href="images/icons.svg#icon-facebook"
></use>
</svg>
</a>
</li>
<li>
<a
href="https://www.linkedin.com"
target="_blank"
rel="noopener noreferrer"
>
<svg>
<use
width="16"
height="16"
href="images/icons.svg#icon-linkedin"
></use>
</svg>
</a>
</li>
</ul>
</div>
</li>
</ul>
</div>
</section>
<!-- End Team section -->
<!-- Customers section -->
<section>
<div class="container flex-column customers-section">
<h2 class="heading-sub">Customers</h2>
<ul class="customer-item">
<li>
<a href="#">
<svg>
<use href="images/icons.svg#icon-client-1"></use>
</svg>
</a>
</li>
<li>
<a href="#">
<svg>
<use href="images/icons.svg#icon-client-2"></use>
</svg>
</a>
</li>
<li>
<a href="#">
<svg>
<use href="images/icons.svg#icon-client-3"></use>
</svg>
</a>
</li>
<li>
<a href="#">
<svg>
<use href="images/icons.svg#icon-client-4"></use>
</svg>
</a>
</li>
<li>
<a href="#">
<svg>
<use href="images/icons.svg#icon-client-5"></use>
</svg>
</a>
</li>
<li>
<a href="#">
<svg>
<use href="images/icons.svg#icon-client-6"></use>
</svg>
</a>
</li>
</ul>
</div>
</section>
<!-- End customers section -->
</main>
<!-- End main section -->
<!-- Page footer -->
<footer class="dark-bg-footer">
<div class="container">
<div class="flex-column">
<a href="#" class="logo logo-footer text-color-cloud"
><span class="text-color-iris">WEB</span>STUDIO</a
>
<p class="footer-paragraph">
Increase the flow of customers and sales for your business with
digital marketing & growth solutions.
</p>
</div>
<div class="footer-social-media">
<p>Social media</p>
<ul class="social-media-icons footer-social-media-icons">
<li>
<a
href="https://www.instagram.com"
target="_blank"
rel="noopener noreferrer"
>
<svg>
<use
width="24"
height="24"
href="images/icons.svg#icon-instagram"
></use>
</svg>
</a>
</li>
<li>
<a href="https://x.com" target="_blank" rel="noopener noreferrer">
<svg>
<use
width="24"
height="24"
href="images/icons.svg#icon-twitter"
></use>
</svg>
</a>
</li>
<li>
<a
href="https://www.facebook.com"
target="_blank"
rel="noopener noreferrer"
>
<svg>
<use
width="24"
height="24"
href="images/icons.svg#icon-facebook"
></use>
</svg>
</a>
</li>
<li>
<a
href="https://www.linkedin.com"
target="_blank"
rel="noopener noreferrer"
>
<svg>
<use
width="24"
height="24"
href="images/icons.svg#icon-linkedin"
></use>
</svg>
</a>
</li>
</ul>
</div>
<div class="subscribe-section">
<p class="footer-paragraph">Subscribe</p>
<form id="subscribe-form" class="subscribe-wrapper">
<label for="email-input">
<input
id="email-input"
type="email"
name="email"
placeholder="E-mail"
aria-label="E-mail"
/>
</label>
<button
type="submit"
name="subscribe-button"
class="subscribe-btn"
aria-label="Subscribe"
>
Subscribe
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
fill="currentColor"
aria-label="Send"
>
<use href="images/icons.svg#icon-send"></use>
</svg>
</button>
</form>
</div>
</div>
</footer>
<!-- End page footer -->
<!-- Modal window -->
<div class="backdrop is-hidden" data-modal>
<div class="modal">
<!-- Close Button -->
<button type="button" class="close-btn" data-modal-close>
<svg width="8" height="8">
<use href="images/icons.svg#icon-close"></use>
</svg>
</button>
<!-- Form -->
<form id="contact-form">
<p class="form-title">
Leave your contacts and we will call you back
</p>
<label for="name">Name</label>
<div class="form-wrapper">
<input type="text" id="name" name="name" autocomplete="off" />
<svg
xmlns="http://www.w3.org/2000/svg"
width="18"
height="18"
fill="currentColor"
aria-label="Person"
class="form-icon"
>
<use href="images/icons.svg#icon-person"></use>
</svg>
</div>
<label for="phone">Phone</label>
<div class="form-wrapper">
<input type="tel" id="phone" name="phone" autocomplete="off" />
<svg
xmlns="http://www.w3.org/2000/svg"
width="18"
height="24"
fill="currentColor"
aria-label="Phone"
class="form-icon"
>
<use href="images/icons.svg#icon-phone"></use>
</svg>
</div>
<label for="email">Email</label>
<div class="form-wrapper">
<input type="email" id="email" name="email" autocomplete="off" />
<svg
xmlns="http://www.w3.org/2000/svg"
width="18"
height="24"
fill="currentColor"
aria-label="E-mail"
class="form-icon"
>
<use href="images/icons.svg#icon-email"></use>
</svg>
</div>
<label for="comment">Comment</label>
<div class="form-wrapper-textarea">
<textarea
id="comment"
name="comment"
placeholder="Text input"
autocomplete="off"
></textarea>
</div>
<div class="form-wrapper-checkbox">
<label for="terms">
<input
type="checkbox"
id="terms"
name="terms"
class="visually-hidden"
/>
<svg
xmlns="http://www.w3.org/2000/svg"
width="10"
height="8"
aria-label="Check Mark"
fill="currentColor"
class="checkbox-icon"
>
<use href="images/icons.svg#icon-check-mark-2"></use>
</svg>
<span
>I accept the terms and conditions of the
<a href="">Privacy Policy</a>
</span>
</label>
</div>
<button type="submit" class="send-btn">Send</button>
</form>
</div>
</div>
<!-- End modal window -->
<!-- Script -->
<script src="js/modal.js"></script>
</body>
</html>