-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
922 lines (660 loc) · 48.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
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
<!DOCTYPE html>
<html lang="en">
<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, maximum-scale=1, user-scalable=no">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" type="text/css" href="https://csshake.surge.sh/csshake.min.css">
<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=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet">
<title>The Keyboardio Model 100</title>
<link rel="icon" type="image/png" sizes="16x16" href="https://iili.io/4sGQhF.png">
<link rel="icon" type="image/png" sizes="16x16" href="./img/favicon.png>
</head>
<body>
<header id="header">
<!-- navbar desktop -->
<div class="header-desktop">
<!-- <img class="logo" id="header-img" src="https://iili.io/4sM3hX.webp" width="198" height="35" -->
<img class="logo" id="header-img" src="./img/keyboardio-logo_360x.webp" width="198" height="35"
alt="logo_keyboradio">
<nav id="nav-bar">
<ul>
<li><a class="nav-link hover-underline" href="#yourSetUp">Features</a></li>
<li><a class="nav-link hover-underline" href="#learning-curve">Learning curve</a></li>
<li><a class="nav-link hover-underline" href="#about">About</a></li>
</ul>
<a href="#preorder" class="cta">Get mine</a>
</nav>
</div>
</header>
<!-- hamburger-mobile -->
<div class="header-mobile">
<div>
<a class="hamburger" href="#navbar"> =</a>
<ul class="navbar" id="navbar">
<li><a href="#preorder">GET MINE</a></li>
<li><a href="#yourSetUp">FEATURES</a></li>
<li><a href="#learning-curve">LEARNING CURVE</a></li>
<li><a href="#about">ABOUTS US</a></li>
<a class="close" href="#">
X
</a>
</ul>
</div>
<!--
<a href="#about" class="favicon"><img src="https://iili.io/4sGQhF.png" width="16" height="16"
alt="logo_keyboradio"></a> -->
<a href="#about" class="favicon"><img src="./img/favicon.png" width="16" height="16"
alt="logo_keyboradio"></a>
<!-- <a href="#preorder" class="cta-shopping-bag"><img src="https://iili.io/4sMxv2.png" alt="icon-bag"></a> -->
<a href="#preorder" class="cta-shopping-bag"><img src="./img/shoping-bag.png" alt="icon-bag"></a>
</div>
<div class="scrollbar-container">
<!-- Video -->
<section id="video-container">
<video playsinline autoplay muted loop poster="./img/poster.jpg" id="video">
<source src="./video/KEY0299_Model_100-FNA15s-1080-5mbps.mp4">
</video>
<div class="overlay">
<h1 class="h1-Title">The Keyboardio<br>
Model 100</h1>
<p>A customizable ergonomic, mechanical keyboard <br> that works the way you do.</p>
<a href="#preorder" class="cta-overlay">Preorder</a>
</div>
</section>
<main>
<!-- -------------Intro
You deserve a good keyboard.-------------- -->
<section id="intro">
<h2>You deserve <span class="white-txt">a good keyboard.</span></h2>
<p>You spend your days at a keyboard.
It is among the most universal of tools in our modern world.
No matter what you make, your keyboard is an integral part
of how you practice your craft.
<span class="transparence-txt">You deserve a good keyboard.</span></p>
<a href="#preorder" class="cta-intro">Yes, I do!</a>
</section>
<!-- ---------------Your setup. Your choice.------------ -->
<Section id="yourSetUp">
<h2><span class="white-txt">Your setup.</span>Your choice.</h2>
<br>
<div class="container-features">
<!-- <img src="https://iili.io/4sGDBa.png" loading="lazy"> -->
<img src="./img/features.png" loading="lazy">
</div>
</Section>
<!-- -------------------FEEL_IT-------------------------- -->
<section class="feel-it">
<div class="content-feel-it">
<h2 class="h2-feel-it"><span>FEEL IT.</span> MASTER IT.</h2>
</div>
</section>
<!-- ----- sticky-nav----- -->
<nav id="sticky-nav">
<div class="container-title-arrow-dropdown-preoder-button">
<a href="#">
<p>The Model 100</p>
</a>
<div>
<a href="#navbar2" class="hamburger2"> =
</a>
<a href="#preorder" class="cta-nav-down">Preorder</a>
</div>
</div>
<ul class="navbar2" id="navbar2">
<!-- <li><a href="#hardwood"><img class="icons-dropdown" src="https://iili.io/4me7kB.png" alt="icon-wood"
loading="lazy"></a></li>
<li><a href="#stretch-less"><img class="icons-dropdown" src="https://iili.io/4mejpI.png"
alt="icon-hand" loading="lazy"></a></li>
<li><a href="#hot-swappable"><img class="icons-dropdown" loading="lazy"
src="https://iili.io/4meOhX.png" alt="icon-hot-swap"></a>
</li>
<li><a href="#switch"><img class="icons-dropdown" loading="lazy" src="https://iili.io/4merYl.png"
alt="icon-switch"></a></li>
<li><a href="#rgb-backlighting"><img class="icons-dropdown" loading="lazy"
src="https://iili.io/4meS4f.png" alt="icon-rgb"></a></li>
<li><a href="#chrysalis"><img class="icons-dropdown" loading="lazy" src="https://iili.io/4meNIt.png"
alt="icon-chrysalis"></a></li> -->
<li><a href="#hardwood"><img class="icons-dropdown" src="./img/wood.png" alt="icon-wood"
loading="lazy"></a></li>
<li><a href="#stretch-less"><img class="icons-dropdown" src="./img/ergo.png"
alt="icon-hand" loading="lazy"></a></li>
<li><a href="#hot-swappable"><img class="icons-dropdown" loading="lazy"
src="./img/hot-swap.png" alt="icon-hot-swap"></a>
</li>
<li><a href="#switch"><img class="icons-dropdown" loading="lazy" src="./img/switch.png"
alt="icon-switch"></a></li>
<li><a href="#rgb-backlighting"><img class="icons-dropdown" loading="lazy"
src="./img/rgb.png" alt="icon-rgb"></a></li>
<li><a href="#chrysalis"><img class="icons-dropdown" loading="lazy" src="./img/gui.png"
alt="icon-chrysalis"></a></li>
<a class="close2" href="#sticky-nav">
X
</a>
</ul>
</nav>
<!-------------A luxurious hardwood Keyboard ---------->
<section id="hardwood">
<h1>A LUXURIOUS <span>HARDWOOD</span> ENCLOSURE</h1>
<div class="container-hardwood">
<!-- <img class="img-hardwood-keyboard" loading="lazy" src="https://iili.io/4sMSjt.jpg"
alt="hardwood-keyboard"> -->
<img class="img-hardwood-keyboard" loading="lazy" src="./img/a-luxurious-hardwood.jpg"
alt="hardwood-keyboard">
<p>We’ve been making <strong>wooden</strong> keyboards since some of our earliest prototypes a
decade.
While they’re <strong>eye-catching</strong>, what matters to us is how
<strong>comfortable</strong> they feel.
Each enclosure by her natural variation in grain will ensure that your Model will have a
<strong>gorgeous and
unique</strong> personality.</p>
</div>
<a href="#preorder" class="cta-intro">Need It!</a>
</section>
<!-------------- Typing on the Model 100 ------------>
<section id="typing-on">
<div class="wrapper">
<h1 class="typing-demo">
Typing on The Model 100ㅤ
</h1>
<!-- <p>JS-Free Project<br>⌘+r</p> -->
</div>
</section>
<!-- ---------------Strech-lesss---------------- -->
<section id="stretch-less">
<h1>STRETCH LESS, TYPE MORE.</h1>
<div class="container-stretch-less">
<!-- <img src="https://iili.io/4sMevp.jpg" loading="lazy" alt="typing on"> -->
<img src="./img/introduction.jpg" loading="lazy" alt="typing on">
<p>From the positions of the keys to the shapes of the keycaps to the shape of the enclosure, we
built
the
Model 100 to give you <strong>the best possible typing experience.</strong></p>
</div>
<a href="#preorder" class="cta-intro">Book mine</a>
</section>
<!-- -Orthogonal A key layout based on your hands- -->
<section id="orthogonal">
<h1>ORTHOGONAL</h1>
<div class="container-orthogonal-1">
<!-- <img class="img-orthogonal-1" src="https://iili.io/4sMFQn.png" loading="lazy" alt="layout"> -->
<img class="img-orthogonal-1" src="./img/layout.png" loading="lazy" alt="layout">
<p>Because when you extend a finger, <strong>it doesn‘t go sideways</strong>. We've aligned the
Model 100's keys
in <strong>columns</strong> so they're easier to reach <strong>without having to contort
your
fingers</strong>.</p>
</div>
<a href="#preorder" class="cta-orthogonal cta-intro">Discover</a>
</section>
<!-- ---------- Custom sculpted keycaps------------>
<section id="sculpted">
<h1>
CUSTOM SCULPTED KEYCAPS
</h1>
<!-- <img class="sculpted-img" src="https://iili.io/4sM8uI.jpg" loading="lazy" alt="custom sculpted"> -->
<img class="sculpted-img" src="./img/poster.jpg" loading="lazy" alt="custom sculpted">
<p>Most keyboard are build with keycap with generic shapes. <strong>We wanted something better, so
we designed
our
own.</strong> It took hundreds of hours of engineering, but we’ve made keycaps that actually
<strong>help you type
better</strong>.</p>
<br>
<p>(And it also dramatically <strong>reduces the learning curve</strong> for those of us who never
learned
"proper" typing.)</p>
<br>
<!-- <img class="quote-sculpted" src="https://iili.io/4sGy2R.png" loading="lazy" alt="quote-i-never-thought"> -->
<img class="quote-sculpted" src="./img/I-never-thought.png" loading="lazy" alt="quote-i-never-thought">
<a href="#preorder" class="cta-a-key-layout cta-intro">Grab It Today</a>
</section>
<!-- -----Hot-swappable mechanical keyswitches------ -->
<section id="hot-swappable">
<h1>HOT-SWAPPABLE <span class="sockets"><br>SOCKETS</span></h1>
<div class="container-hot-swappable">
<!-- <img src="https://iili.io/4sGbEJ.png" loading="lazy" alt="hot-swappable"> -->
<img src="./img/hot-swappable-switches.png"
<p>
The Model 100 features hot-swap sockets designed to <strong>let you remove the switches</strong>
with a standard
keyswitch puller and replace them with just about any MX-style switch, <strong>no soldering or
disassembly
required</strong>.
</p>
</div>
<a href="#preorder" class="cta-intro">Need one!</a>
</section>
<!-- -------- MECHANICAL KEYSWITCHES--------- -->
<section id="switch">
<div class="block-switcher-intro">
<h1 class="title-switch">MECHANICAL KEYSWITCHES</h1>
<!-- <img class="list-switches" src="https://iili.io/4sGZLg.png" loading="lazy" alt="switchers"> -->
<img class="list-switches" src="./img/blurry-switches-58b989e91086215b7a4130167467261f.png" loading="lazy" alt="switchers">
<h1 class="choose-yours">Choose yours...</h1>
</div>
<h2><span class="linear">LINEAR</span></h2>
<div class="block-switcher">
<div class="txt-img">
<!-- <img class="img-switcher" loading="lazy" src="https://iili.io/4sMqEG.gif"
alt="switcher-red"> -->
<img class="img-switcher" loading="lazy" src="./img/GIF_MXRGB_Std-Red.gif"
alt="switcher-red">
<p>Switches with uninterrupted key travel and minimal spring force – for fast
reactivity
and
an ultra-smooth typing feeling.</p>
</div>
</div>
<h2><span class="clicky switch-container">CLICKY</span></h2>
<div class="block-switcher">
<div class="txt-img">
<!-- <img class="img-switcher" loading="lazy" src="https://iili.io/4sMfBs.gif" alt="switcher-blue"> -->
<img class="img-switcher" loading="lazy" src="./img/GIF_MXRGB_Blue.gif" alt="switcher-blue">
<p>Provides a gratifying, audible click and tactile feedback with every
keystroke for
a familiar mechanical feel and sound.</p>
</div>
</div>
<div class="switch-container">
<h2><span class="tactile">TACTILE</span></h2>
<div class="block-switcher">
<div class="txt-img">
<!-- <img class="img-switcher" loading="lazy" src="https://iili.io/4sMn24.gif"
alt="switcher-brown"> -->
<img class="img-switcher" loading="lazy" src="./img/GIF_MXRGB_Brown.gif"
alt="switcher-brown">
<p>Switches with a satisfying tactile bump you feel for precise feedback, reactive
key
reset, and less noise so your typing doesn’t disturb those around you.</p>
</div>
</div>
</div>
</section>
<!-- -----------RGB-LED----------------- -->
<section id="rgb-backlighting">
<h1 class="neon">PROGRAMMABLE BACKLIGHTING</h1>
<!-- <img src="https://iili.io/4sMkyN.jpg" loading="lazy" alt="led"> -->
<img src="./img/Led.jpg" loading="lazy" alt="led">
<div class="container-rgb">
<p>We've placed an <strong>independently programmable</strong> RGB LED underneath each and every key
on the
keyboard. Out of
the
box, the Model 100 can breathe, glow and do cute rainbow fade animations with the best
of them, but the
neat
part is that each and every one of those LEDs is <strong>end-user controllable</strong>.</p>
</div>
<a href="#preorder" class="cta-intro">Get The Look</a>
</section>
<!-- --------- Chrysalis --------- -->
<section id="chrysalis">
<h1>Graphical Configurator</h1>
<div class="container-chrysalis">
<!-- <img src="https://iili.io/4sGimP.png" loading="lazy" alt="software"> -->
<img src="./img/chrysalis.png" loading="lazy" alt="software">
<div>
<p>Chrysalis, our cross-platform graphical configuration tool. With support for
point-and-click key
remapping, custom shortcuts, layout backup and
restore,
and an upcoming interface for creating macros. Chrysalis makes <strong>customizing</strong>
your key
layout
and
LED themes <strong>easy</strong> and convenient.</p>
<p>Chrysalis is, of course, fully open source. You can always download it <a
href="https://github.com/keyboardio/Chrysalis"><strong
class="hover-underline">here</strong></a>
</p>
</div>
</div>
<br>
<a href="#preorder" class="cta-a-key-layout cta-intro"">Buy One</a>
</section>
<!-- ----------------The learning curve----------------->
<section id="learning-curve">
<h1><span>THE LEARNING</span> CURVE</h1>
<div class="container-learning-curve">
<p>We're not going to beat around the bush. If you’ve never used a split keyboard with
the keys arranged in
columns, it might take <strong>a little bit of practice</strong> to get up to speed on the
Model
100.</p>
<!-- <img src="https://iili.io/4sG4dQ.png" loading="lazy" class="quote-absolutely"
alt="quote-absolutely"> -->
<img src="./img/absolutely-worth.png" loading="lazy" class="quote-absolutely"
alt="quote-absolutely">
</div>
<div class="container-learning-curve">
<p>Most Model 01 typists told us that they started to get familiar with the layout within a few
hours.
True mastery of the layout is an investment that can take <strong> a month or two to really
start to pay
off</strong>.
</p>
<!-- <img class="quote-the-best" src="https://iili.io/4sGPkB.gif" loading="lazy"
alt="quote-the-best"> -->
<img class="quote-the-best" src="./img/best.gif" loading="lazy"
alt="quote-the-best">
</div>
<p class="txt-center-learning-curve">To give you a sense of the size and shape of the Model 100,
we've
created a life-size <strong>printable paper</strong> Model 100. <a
href="https://www.dropbox.com/s/a94ngulc4f0xu2d/printable-paper-model-100.pdf?dl=0"><strong
class="hover-underline indiego">Just download this PDF</strong></a> and hit print.</p>
<a href="#preorder" class="cta-a-key-layout cta-intro"">Preorder</a>
</section>
<!-------------------- Preorder NOW ----------------------------->
<section id="preorder">
<h1>PREORDER NOW</h1>
<img src="./img/intro.webp" loading="lazy" alt="keyboard-wood">
<!-- <img src="https://iili.io/4sM97p.webp" loading="lazy" alt="keyboard-wood"> -->
<p>The Model 100<span class="orange-span"></span> is an <span class="orange-span">updated and
improved</span> version of the sold-out Model 01, now with
<span class="orange-span">hot-swappable</span> MX-compatible switches and a luxurious <span
class="orange-span">walnut</span> enclosure.
</p>
<p class="mini-text">(100% of those who will receive their keyboard started by pre-ordering
itㅤ;)</p>
<form id="form" action="https://www.freecodecamp.com/email-submit" method="get"
class="input-group">
<input required type="email" class="input" id="email" name="email"
placeholder="Your email address..." autocomplete="off">
<input id="submit" class="button-submit" value="GET MINE" type="submit">
</form>
<p class="no-spam">No spam. Only cool stuff.</p>
</section>
<!-- ---------About----------- -->
<section id="about">
<h1>ABOUT US</h1>
<h2 class="nutshell">In a nutshell...</h2>
<p>We make super comfortable keyboards that are beautiful and hackable.</p>
<h2 class="news">Keyboardio in the news</h2>
<!-- <img src="https://iili.io/4sGmrv.webp" loading="lazy" alt="marks"> -->
<img src="img/in_the_press_large.webp" loading="lazy" alt="marks">
<details>
<summary>Why We Made It?</summary>
<p>We come from different backgrounds, but all of us have spent most of our work lives (and a good
deal
of
our
personal lives) in front of a computer. Keyboards are the fastest, most accurate way to get
information
into
a computer. Still, most keyboards out there just aren't very good: they're uncomfortable,
unattractive,
and
poorly made. We want to change that with Keyboardio.
</p>
<p>The Model 01 is our first product, and like all our products, it will ship with "source code and
a
screwdriver". We believe hardware should be open - you should have access to the firmware so you
can
make it
better. We also believe hardware should be beautiful and work well right out of the box.
Basically
it's
the
keyboard we always wanted, but had to build ourselves.
</p>
</details>
<details>
<summary>Founding Story</summary>
<p>Jesse created the first prototype of what would become the Keyboardio Model 01 as a hobby
project,
because he
wanted a better keyboard. Since then, we've been through dozens of prototypes, read hundreds of
pages of
ergonomics research, set one 3D printer on fire, and conducted long-term tests with some
wonderful
beta
testers.
</p>
<p>Kaia and Jesse co-founded Keyboardio to bring beautiful keyboards to the world. They met when
Kaia
saw a
tiny
Vaio laptop Jesse was using and she just needed to learn more - you might say working on
consumer
electronics together is destiny. Their strengths are complementary: Jesse has experience
building
amazing
open technologies that help people work better; Kaia has experience in finance, operations,
strategy,
and
marketing. And they've been married since 2007.
</p>
<p>Keyboardio's first product, the Model 01, was developed while at Highway1, a hardware incubator
based
in
San
Francisco but with Shenzhen roots. We’re also supported by angel investments from people who’ve
used
their
keyboards to change the world, including early engineers at Twitter and Nest, the founder of a
dozen
local
newspapers, and the founder of Poetica.</p>
</details>
<h2><a href="https://shop.keyboard.io/" class="hover-underline"><strong
class="indiego">Keyboard.io</strong></a></h2>
</section>
<!-- ---------------THIS IS IT------------------------ -->
<section id="this-is-it">
<h1>This is it. You are almost at the bottom.</h1>
<p>This is the <strong>last opportunity</strong> to reserve your dream keyboard (and that's why we put a
slightly flashy
orange
background...!)</p>
<a href="#preorder"><button class="btn-cta-final"><span>Take my money ! 🤩</span></button></a>
</section>
<!-- -------------------FOOTER-------------------------- -->
<footer>
<p class="text_small">Certification Project, Product Landing Page, <a
href="https://www.freecodecamp.org/learn/2022/responsive-web-design/build-a-product-landing-page-project/build-a-product-landing-page"
class="hover-underline">FreeCodeCamp(🔥)</a></p>
<p class="text_small">2022 - Keyboardio. <a href="https://github.com/z-bj/the-keyboardio-model100" class="hover-underline">
Powered by <strong>z-bj</strong></a></p>
<ul class="payment-icons">
<li>
<svg class="icon" xmlns="http://www.w3.org/2000/svg" role="img" viewBox="0 0 38 24" width="38"
height="24" aria-labelledby="pi-american_express">
<title id="pi-american_express">American Express</title>
<g fill="none">
<path fill="#000"
d="M35,0 L3,0 C1.3,0 0,1.3 0,3 L0,21 C0,22.7 1.4,24 3,24 L35,24 C36.7,24 38,22.7 38,21 L38,3 C38,1.3 36.6,0 35,0 Z"
opacity=".07"></path>
<path fill="#006FCF"
d="M35,1 C36.1,1 37,1.9 37,3 L37,21 C37,22.1 36.1,23 35,23 L3,23 C1.9,23 1,22.1 1,21 L1,3 C1,1.9 1.9,1 3,1 L35,1">
</path>
<path fill="#FFF"
d="M8.971,10.268 L9.745,12.144 L8.203,12.144 L8.971,10.268 Z M25.046,10.346 L22.069,10.346 L22.069,11.173 L24.998,11.173 L24.998,12.412 L22.075,12.412 L22.075,13.334 L25.052,13.334 L25.052,14.073 L27.129,11.828 L25.052,9.488 L25.046,10.346 L25.046,10.346 Z M10.983,8.006 L14.978,8.006 L15.865,9.941 L16.687,8 L27.057,8 L28.135,9.19 L29.25,8 L34.013,8 L30.494,11.852 L33.977,15.68 L29.143,15.68 L28.065,14.49 L26.94,15.68 L10.03,15.68 L9.536,14.49 L8.406,14.49 L7.911,15.68 L4,15.68 L7.286,8 L10.716,8 L10.983,8.006 Z M19.646,9.084 L17.407,9.084 L15.907,12.62 L14.282,9.084 L12.06,9.084 L12.06,13.894 L10,9.084 L8.007,9.084 L5.625,14.596 L7.18,14.596 L7.674,13.406 L10.27,13.406 L10.764,14.596 L13.484,14.596 L13.484,10.661 L15.235,14.602 L16.425,14.602 L18.165,10.673 L18.165,14.603 L19.623,14.603 L19.647,9.083 L19.646,9.084 Z M28.986,11.852 L31.517,9.084 L29.695,9.084 L28.094,10.81 L26.546,9.084 L20.652,9.084 L20.652,14.602 L26.462,14.602 L28.076,12.864 L29.624,14.602 L31.499,14.602 L28.987,11.852 L28.986,11.852 Z">
</path>
</g>
</svg>
</li>
<li>
<svg class="icon" version="1.1" xmlns="http://www.w3.org/2000/svg" role="img" x="0" y="0"
width="38" height="24" viewBox="0 0 165.521 105.965" xml:space="preserve"
aria-labelledby="pi-apple_pay">
<title id="pi-apple_pay">Apple Pay</title>
<path fill="#000"
d="M150.698 0H14.823c-.566 0-1.133 0-1.698.003-.477.004-.953.009-1.43.022-1.039.028-2.087.09-3.113.274a10.51 10.51 0 0 0-2.958.975 9.932 9.932 0 0 0-4.35 4.35 10.463 10.463 0 0 0-.975 2.96C.113 9.611.052 10.658.024 11.696a70.22 70.22 0 0 0-.022 1.43C0 13.69 0 14.256 0 14.823v76.318c0 .567 0 1.132.002 1.699.003.476.009.953.022 1.43.028 1.036.09 2.084.275 3.11a10.46 10.46 0 0 0 .974 2.96 9.897 9.897 0 0 0 1.83 2.52 9.874 9.874 0 0 0 2.52 1.83c.947.483 1.917.79 2.96.977 1.025.183 2.073.245 3.112.273.477.011.953.017 1.43.02.565.004 1.132.004 1.698.004h135.875c.565 0 1.132 0 1.697-.004.476-.002.952-.009 1.431-.02 1.037-.028 2.085-.09 3.113-.273a10.478 10.478 0 0 0 2.958-.977 9.955 9.955 0 0 0 4.35-4.35c.483-.947.789-1.917.974-2.96.186-1.026.246-2.074.274-3.11.013-.477.02-.954.022-1.43.004-.567.004-1.132.004-1.699V14.824c0-.567 0-1.133-.004-1.699a63.067 63.067 0 0 0-.022-1.429c-.028-1.038-.088-2.085-.274-3.112a10.4 10.4 0 0 0-.974-2.96 9.94 9.94 0 0 0-4.35-4.35A10.52 10.52 0 0 0 156.939.3c-1.028-.185-2.076-.246-3.113-.274a71.417 71.417 0 0 0-1.431-.022C151.83 0 151.263 0 150.698 0z">
</path>
<path fill="#FFF"
d="M150.698 3.532l1.672.003c.452.003.905.008 1.36.02.793.022 1.719.065 2.583.22.75.135 1.38.34 1.984.648a6.392 6.392 0 0 1 2.804 2.807c.306.6.51 1.226.645 1.983.154.854.197 1.783.218 2.58.013.45.019.9.02 1.36.005.557.005 1.113.005 1.671v76.318c0 .558 0 1.114-.004 1.682-.002.45-.008.9-.02 1.35-.022.796-.065 1.725-.221 2.589a6.855 6.855 0 0 1-.645 1.975 6.397 6.397 0 0 1-2.808 2.807c-.6.306-1.228.511-1.971.645-.881.157-1.847.2-2.574.22-.457.01-.912.017-1.379.019-.555.004-1.113.004-1.669.004H14.801c-.55 0-1.1 0-1.66-.004a74.993 74.993 0 0 1-1.35-.018c-.744-.02-1.71-.064-2.584-.22a6.938 6.938 0 0 1-1.986-.65 6.337 6.337 0 0 1-1.622-1.18 6.355 6.355 0 0 1-1.178-1.623 6.935 6.935 0 0 1-.646-1.985c-.156-.863-.2-1.788-.22-2.578a66.088 66.088 0 0 1-.02-1.355l-.003-1.327V14.474l.002-1.325a66.7 66.7 0 0 1 .02-1.357c.022-.792.065-1.717.222-2.587a6.924 6.924 0 0 1 .646-1.981c.304-.598.7-1.144 1.18-1.623a6.386 6.386 0 0 1 1.624-1.18 6.96 6.96 0 0 1 1.98-.646c.865-.155 1.792-.198 2.586-.22.452-.012.905-.017 1.354-.02l1.677-.003h135.875">
</path>
<g>
<g>
<path fill="#000"
d="M43.508 35.77c1.404-1.755 2.356-4.112 2.105-6.52-2.054.102-4.56 1.355-6.012 3.112-1.303 1.504-2.456 3.959-2.156 6.266 2.306.2 4.61-1.152 6.063-2.858">
</path>
<path fill="#000"
d="M45.587 39.079c-3.35-.2-6.196 1.9-7.795 1.9-1.6 0-4.049-1.8-6.698-1.751-3.447.05-6.645 2-8.395 5.1-3.598 6.2-.95 15.4 2.55 20.45 1.699 2.5 3.747 5.25 6.445 5.151 2.55-.1 3.549-1.65 6.647-1.65 3.097 0 3.997 1.65 6.696 1.6 2.798-.05 4.548-2.5 6.247-5 1.95-2.85 2.747-5.6 2.797-5.75-.05-.05-5.396-2.101-5.446-8.251-.05-5.15 4.198-7.6 4.398-7.751-2.399-3.548-6.147-3.948-7.447-4.048">
</path>
</g>
<g>
<path fill="#000"
d="M78.973 32.11c7.278 0 12.347 5.017 12.347 12.321 0 7.33-5.173 12.373-12.529 12.373h-8.058V69.62h-5.822V32.11h14.062zm-8.24 19.807h6.68c5.07 0 7.954-2.729 7.954-7.46 0-4.73-2.885-7.434-7.928-7.434h-6.706v14.894z">
</path>
<path fill="#000"
d="M92.764 61.847c0-4.809 3.665-7.564 10.423-7.98l7.252-.442v-2.08c0-3.04-2.001-4.704-5.562-4.704-2.938 0-5.07 1.507-5.51 3.82h-5.252c.157-4.86 4.731-8.395 10.918-8.395 6.654 0 10.995 3.483 10.995 8.89v18.663h-5.38v-4.497h-.13c-1.534 2.937-4.914 4.782-8.579 4.782-5.406 0-9.175-3.222-9.175-8.057zm17.675-2.417v-2.106l-6.472.416c-3.64.234-5.536 1.585-5.536 3.95 0 2.288 1.975 3.77 5.068 3.77 3.95 0 6.94-2.522 6.94-6.03z">
</path>
<path fill="#000"
d="M120.975 79.652v-4.496c.364.051 1.247.103 1.715.103 2.573 0 4.029-1.09 4.913-3.899l.52-1.663-9.852-27.293h6.082l6.863 22.146h.13l6.862-22.146h5.927l-10.216 28.67c-2.34 6.577-5.017 8.735-10.683 8.735-.442 0-1.872-.052-2.261-.157z">
</path>
</g>
</g>
</svg>
</li>
<li>
<svg class="icon" width="38" height="24" role="img" aria-labelledby="pi-facebook_pay"
viewBox="0 0 38 24" xmlns="http://www.w3.org/2000/svg">
<title id="pi-facebook_pay">Facebook Pay</title>
<path xmlns="http://www.w3.org/2000/svg" opacity=".07"
d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z">
</path>
<path xmlns="http://www.w3.org/2000/svg" fill="#fff"
d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32"></path>
<path fill-rule="evenodd" clip-rule="evenodd"
d="M8.29 5.672h.035v.874H8.29c-2.256 0-4.165 1.46-4.8 3.472l-.849-.265c.75-2.365 2.995-4.081 5.649-4.081z"
fill="url(#pi-paint0_linear)"></path>
<path fill-rule="evenodd" clip-rule="evenodd"
d="M8.325 6.546v-.874H8.29c2.662 0 4.914 1.728 5.656 4.105l-.848.266c-.624-2.014-2.523-3.482-4.773-3.497z"
fill="url(#pi-paint1_linear)"></path>
<path fill-rule="evenodd" clip-rule="evenodd"
d="M11.243 15.478l.523.708a5.96 5.96 0 01-3.476 1.108 5.96 5.96 0 01-3.43-1.075l.524-.708c.82.573 1.823.91 2.906.91 1.104 0 2.124-.35 2.953-.943z"
fill="url(#pi-paint2_linear)"></path>
<path fill-rule="evenodd" clip-rule="evenodd"
d="M2.642 9.753l.848.265a4.856 4.856 0 00-.225 1.465c0 1.663.836 3.134 2.119 4.028l-.523.708c-1.453-1.017-2.417-2.663-2.483-4.532v-.407c.019-.53.11-1.042.264-1.527z"
fill="url(#pi-paint3_linear)"></path>
<path fill-rule="evenodd" clip-rule="evenodd"
d="M14.205 11.483c0 1.934-.96 3.646-2.44 4.703l-.523-.707a4.904 4.904 0 002.073-3.996c0-.502-.076-.987-.218-1.443l.848-.266c.17.54.26 1.114.26 1.71z"
fill="url(#pi-paint4_linear)"></path>
<path fill-rule="evenodd" clip-rule="evenodd"
d="M11.06 12.218c0-.308-.215-.446-.692-.446H9.193v.89h1.175c.485 0 .692-.133.692-.444zm-.857-1.866h-1.01v.89h1.01c.457 0 .664-.138.664-.443 0-.306-.21-.447-.664-.447zm1.474 1.922c0 .594-.474.932-1.31.932H8.64c-.03 0-.05-.02-.05-.049v-3.3c0-.029.02-.048.05-.048h1.575c.813 0 1.26.313 1.26.878 0 .335-.15.604-.583.733.548.114.77.437.785.854zM7.872 9.857v.461c0 .03-.02.049-.05.049h-2v.861h1.66c.03 0 .049.02.049.049v.46c0 .03-.02.05-.05.05H5.823v1.37c0 .03-.02.049-.05.049H5.27c-.03 0-.05-.02-.05-.049v-3.3c0-.029.02-.048.05-.048h2.553c.03 0 .05.02.05.048z"
fill="#64717D"></path>
<path fill-rule="evenodd" clip-rule="evenodd"
d="M31.214 9.82a49.278 49.278 0 001.688 4.454l1.55-4.454h1.239l-2.221 5.754c-.284.737-.621 1.305-1.011 1.705-.39.4-.913.6-1.568.6-.163 0-.317-.013-.46-.039v-1.005c.12.019.227.028.317.028.398 0 .722-.11.972-.332.25-.221.47-.546.659-.974a45.905 45.905 0 01-1.312-2.824 80.59 80.59 0 01-1.17-2.913h1.317zm-4.6-.134c.696 0 1.256.197 1.68.591.425.395.637.985.637 1.77V15.4h-1.09v-.91c-.22.328-.503.58-.847.757a2.542 2.542 0 01-1.176.265c-.599 0-1.064-.152-1.395-.455-.331-.303-.497-.703-.497-1.197 0-.491.187-.903.56-1.234.373-.33.968-.497 1.786-.497h1.545v-.016c0-.938-.439-1.407-1.317-1.407-.368 0-.677.065-.93.196-.251.13-.455.312-.61.547l-.778-.62c.242-.368.561-.651.957-.848a2.985 2.985 0 011.35-.296h.124zM20.16 7.588c.996 0 1.74.233 2.232.7.492.467.739 1.1.739 1.9 0 .797-.247 1.43-.739 1.898-.492.469-1.236.703-2.232.703h-2.136v2.612H16.83V7.588h3.329zm7.657 5.419h-1.5c-.446 0-.765.07-.957.21a.665.665 0 00-.286.566c0 .49.33.736.994.736.439 0 .804-.097 1.096-.293.292-.195.51-.46.653-.795v-.424zm-7.77-4.326h-2.023v3.014h2.022c.648 0 1.12-.125 1.418-.377.297-.25.445-.627.445-1.13 0-.502-.148-.879-.445-1.13-.298-.251-.77-.377-1.418-.377z"
fill="#1B2529"></path>
<defs>
<linearGradient id="pi-paint0_linear" x1="8.325" y1="6.803" x2="3.828" y2="10.121"
gradientUnits="userSpaceOnUse">
<stop stop-color="#24D365"></stop>
<stop offset="1" stop-color="#139DBD"></stop>
</linearGradient>
<linearGradient id="pi-paint1_linear" x1="8.29" y1="6.774" x2="12.8" y2="10.111"
gradientUnits="userSpaceOnUse">
<stop stop-color="#23D068"></stop>
<stop offset=".52" stop-color="#EACD36"></stop>
<stop offset="1" stop-color="#FF6C5C"></stop>
</linearGradient>
<linearGradient id="pi-paint2_linear" x1="5.121" y1="15.876" x2="11.496" y2="15.876"
gradientUnits="userSpaceOnUse">
<stop stop-color="#266FF3"></stop>
<stop offset="1" stop-color="#C439D6"></stop>
</linearGradient>
<linearGradient id="pi-paint3_linear" x1="4.135" y1="15.894" x2="2.281" y2="10.39"
gradientUnits="userSpaceOnUse">
<stop stop-color="#266FF3"></stop>
<stop offset="1" stop-color="#149FBA"></stop>
</linearGradient>
<linearGradient id="pi-paint4_linear" x1="12.899" y1="9.913" x2="11.041" y2="15.394"
gradientUnits="userSpaceOnUse">
<stop stop-color="#FF6C5C"></stop>
<stop offset="1" stop-color="#C439D6"></stop>
</linearGradient>
</defs>
</svg>
</li>
<li>
<svg class="icon" xmlns="http://www.w3.org/2000/svg" role="img" viewBox="0 0 38 24" width="38"
height="24" aria-labelledby="pi-google_pay">
<title id="pi-google_pay">Google Pay</title>
<path d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z"
fill="#000" opacity=".07"></path>
<path d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32"
fill="#FFF">
</path>
<path
d="M18.093 11.976v3.2h-1.018v-7.9h2.691a2.447 2.447 0 0 1 1.747.692 2.28 2.28 0 0 1 .11 3.224l-.11.116c-.47.447-1.098.69-1.747.674l-1.673-.006zm0-3.732v2.788h1.698c.377.012.741-.135 1.005-.404a1.391 1.391 0 0 0-1.005-2.354l-1.698-.03zm6.484 1.348c.65-.03 1.286.188 1.778.613.445.43.682 1.03.65 1.649v3.334h-.969v-.766h-.049a1.93 1.93 0 0 1-1.673.931 2.17 2.17 0 0 1-1.496-.533 1.667 1.667 0 0 1-.613-1.324 1.606 1.606 0 0 1 .613-1.336 2.746 2.746 0 0 1 1.698-.515c.517-.02 1.03.093 1.49.331v-.208a1.134 1.134 0 0 0-.417-.901 1.416 1.416 0 0 0-.98-.368 1.545 1.545 0 0 0-1.319.717l-.895-.564a2.488 2.488 0 0 1 2.182-1.06zM23.29 13.52a.79.79 0 0 0 .337.662c.223.176.5.269.785.263.429-.001.84-.17 1.146-.472.305-.286.478-.685.478-1.103a2.047 2.047 0 0 0-1.324-.374 1.716 1.716 0 0 0-1.03.294.883.883 0 0 0-.392.73zm9.286-3.75l-3.39 7.79h-1.048l1.281-2.728-2.224-5.062h1.103l1.612 3.885 1.569-3.885h1.097z"
fill="#5F6368"></path>
<path
d="M13.986 11.284c0-.308-.024-.616-.073-.92h-4.29v1.747h2.451a2.096 2.096 0 0 1-.9 1.373v1.134h1.464a4.433 4.433 0 0 0 1.348-3.334z"
fill="#4285F4"></path>
<path
d="M9.629 15.721a4.352 4.352 0 0 0 3.01-1.097l-1.466-1.14a2.752 2.752 0 0 1-4.094-1.44H5.577v1.17a4.53 4.53 0 0 0 4.052 2.507z"
fill="#34A853"></path>
<path
d="M7.079 12.05a2.709 2.709 0 0 1 0-1.735v-1.17H5.577a4.505 4.505 0 0 0 0 4.075l1.502-1.17z"
fill="#FBBC04"></path>
<path
d="M9.629 8.44a2.452 2.452 0 0 1 1.74.68l1.3-1.293a4.37 4.37 0 0 0-3.065-1.183 4.53 4.53 0 0 0-4.027 2.5l1.502 1.171a2.715 2.715 0 0 1 2.55-1.875z"
fill="#EA4335"></path>
</svg>
</li>
<li>
<svg class="icon" viewBox="0 0 38 24" xmlns="http://www.w3.org/2000/svg" role="img" width="38"
height="24" aria-labelledby="pi-master">
<title id="pi-master">Mastercard</title>
<path opacity=".07"
d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z">
</path>
<path fill="#fff"
d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32">
</path>
<circle fill="#EB001B" cx="15" cy="12" r="7"></circle>
<circle fill="#F79E1B" cx="23" cy="12" r="7"></circle>
<path fill="#FF5F00"
d="M22 12c0-2.4-1.2-4.5-3-5.7-1.8 1.3-3 3.4-3 5.7s1.2 4.5 3 5.7c1.8-1.2 3-3.3 3-5.7z">
</path>
</svg>
</li>
<li>
<svg class="icon" viewBox="0 0 38 24" xmlns="http://www.w3.org/2000/svg" width="38" height="24"
role="img" aria-labelledby="pi-paypal">
<title id="pi-paypal">PayPal</title>
<path opacity=".07"
d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z">
</path>
<path fill="#fff"
d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32">
</path>
<path fill="#003087"
d="M23.9 8.3c.2-1 0-1.7-.6-2.3-.6-.7-1.7-1-3.1-1h-4.1c-.3 0-.5.2-.6.5L14 15.6c0 .2.1.4.3.4H17l.4-3.4 1.8-2.2 4.7-2.1z">
</path>
<path fill="#3086C8"
d="M23.9 8.3l-.2.2c-.5 2.8-2.2 3.8-4.6 3.8H18c-.3 0-.5.2-.6.5l-.6 3.9-.2 1c0 .2.1.4.3.4H19c.3 0 .5-.2.5-.4v-.1l.4-2.4v-.1c0-.2.3-.4.5-.4h.3c2.1 0 3.7-.8 4.1-3.2.2-1 .1-1.8-.4-2.4-.1-.5-.3-.7-.5-.8z">
</path>
<path fill="#012169"
d="M23.3 8.1c-.1-.1-.2-.1-.3-.1-.1 0-.2 0-.3-.1-.3-.1-.7-.1-1.1-.1h-3c-.1 0-.2 0-.2.1-.2.1-.3.2-.3.4l-.7 4.4v.1c0-.3.3-.5.6-.5h1.3c2.5 0 4.1-1 4.6-3.8v-.2c-.1-.1-.3-.2-.5-.2h-.1z">
</path>
</svg>
</li>
<li>
<svg class="icon" viewBox="0 0 38 24" xmlns="http://www.w3.org/2000/svg" role="img" width="38"
height="24" aria-labelledby="pi-visa">
<title id="pi-visa">Visa</title>
<path opacity=".07"
d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z">
</path>
<path fill="#fff"
d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32">
</path>
<path
d="M28.3 10.1H28c-.4 1-.7 1.5-1 3h1.9c-.3-1.5-.3-2.2-.6-3zm2.9 5.9h-1.7c-.1 0-.1 0-.2-.1l-.2-.9-.1-.2h-2.4c-.1 0-.2 0-.2.2l-.3.9c0 .1-.1.1-.1.1h-2.1l.2-.5L27 8.7c0-.5.3-.7.8-.7h1.5c.1 0 .2 0 .2.2l1.4 6.5c.1.4.2.7.2 1.1.1.1.1.1.1.2zm-13.4-.3l.4-1.8c.1 0 .2.1.2.1.7.3 1.4.5 2.1.4.2 0 .5-.1.7-.2.5-.2.5-.7.1-1.1-.2-.2-.5-.3-.8-.5-.4-.2-.8-.4-1.1-.7-1.2-1-.8-2.4-.1-3.1.6-.4.9-.8 1.7-.8 1.2 0 2.5 0 3.1.2h.1c-.1.6-.2 1.1-.4 1.7-.5-.2-1-.4-1.5-.4-.3 0-.6 0-.9.1-.2 0-.3.1-.4.2-.2.2-.2.5 0 .7l.5.4c.4.2.8.4 1.1.6.5.3 1 .8 1.1 1.4.2.9-.1 1.7-.9 2.3-.5.4-.7.6-1.4.6-1.4 0-2.5.1-3.4-.2-.1.2-.1.2-.2.1zm-3.5.3c.1-.7.1-.7.2-1 .5-2.2 1-4.5 1.4-6.7.1-.2.1-.3.3-.3H18c-.2 1.2-.4 2.1-.7 3.2-.3 1.5-.6 3-1 4.5 0 .2-.1.2-.3.2M5 8.2c0-.1.2-.2.3-.2h3.4c.5 0 .9.3 1 .8l.9 4.4c0 .1 0 .1.1.2 0-.1.1-.1.1-.1l2.1-5.1c-.1-.1 0-.2.1-.2h2.1c0 .1 0 .1-.1.2l-3.1 7.3c-.1.2-.1.3-.2.4-.1.1-.3 0-.5 0H9.7c-.1 0-.2 0-.2-.2L7.9 9.5c-.2-.2-.5-.5-.9-.6-.6-.3-1.7-.5-1.9-.5L5 8.2z"
fill="#142688"></path>
</svg>
</li>
</ul>
</footer>
</div>
</body>
</html>