-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
1264 lines (1210 loc) · 97.9 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
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!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.0, user-scalable=0">
<link rel="shortcut icon" href="./img/favicon.ico" type="image/x-icon">
<!-- HCo -->
<link rel="stylesheet" href="https://b.cdnst.net/fonts/HCo_fonts.css">
<!-- Gauge Mono Regular -->
<link href="//db.onlinewebfonts.com/c/5d419330f5cf064d02b4d9bd3f1cd7f5?family=Gauge+Mono+Regular" rel="stylesheet"
type="text/css" />
<link rel="stylesheet" href="./css/reset.css">
<link rel="stylesheet" href="./css/components/wrapper.css">
<link rel="stylesheet" href="./css/styles.css">
<link rel="stylesheet" href="./css/components/header.css">
<link rel="stylesheet" href="./css/components/header-navigation-menu.css">
<link rel="stylesheet" href="./css/components/header-container.css">
<link rel="stylesheet" href="./css/components/header-logo-container.css">
<link rel="stylesheet" href="./css/components/header-navigation-menu.css">
<link rel="stylesheet" href="./css/components/header-navigation-submenu.css">
<link rel="stylesheet" href="./css/components/header-navigation-list-item.css">
<link rel="stylesheet" href="./css/components/main.css">
<link rel="stylesheet" href="./css/components/main-network-test.css">
<link rel="stylesheet" href="./css/components/main-result-icon-container.css">
<link rel="stylesheet" href="./css/components/main-results-settings-container.css">
<link rel="stylesheet" href="./css/components/main-result.css">
<link rel="stylesheet" href="./css/components/main-results-settings-list.css">
<link rel="stylesheet" href="./css/components/main-results-settings-list-item.css">
<link rel="stylesheet" href="./css/components/main-connection-test-button-container.css">
<link rel="stylesheet" href="./css/components/main-connection-test-happening.css">
<link rel="stylesheet" href="./css/components/main-connection-information.css">
<link rel="stylesheet" href="./css/components/main-connection-type.css">
<link rel="stylesheet" href="./css/components/main-available-devices.css">
<link rel="stylesheet" href="./css/components/main-other-information.css">
<link rel="stylesheet" href="./css/components/footer.css">
<link rel="stylesheet" href="./css/components/footer-main-links.css">
<link rel="stylesheet" href="./css/components/footer-links-container.css">
<link rel="stylesheet" href="./css/components/footer-another-information.css">
<link rel="stylesheet" href="./css/components/mobile/header-container.css">
<link rel="stylesheet" href="./css/components/mobile/header-logo-container.css">
<link rel="stylesheet" href="./css/components/mobile/header-navigation-mobile-controls.css">
<link rel="stylesheet" href="./css/components/mobile/header-navigation-menu.css">
<link rel="stylesheet" href="./css/components/mobile/header-navigation-list-item.css">
<link rel="stylesheet" href="./css/components/mobile/header-navigation-submenu.css">
<link rel="stylesheet" href="./css/components/mobile/main-network-test.css">
<link rel="stylesheet" href="./css/components/mobile/main-connection-test-happening.css">
<link rel="stylesheet" href="./css/components/mobile/main-connection-information.css">
<link rel="stylesheet" href="./css/components/mobile/main-available-devices.css">
<link rel="stylesheet" href="./css/components/mobile/main-other-information.css">
<link rel="stylesheet" href="./css/components/mobile/footer-main-links.css">
<link rel="stylesheet" href="./css/components/mobile/footer-another-information.css">
<script src="https://cdn.jsdelivr.net/npm/apexcharts"></script>
<title>Speedtest by Ookla - The Global Broadband Speed Test</title>
</head>
<body>
<header class="header">
<div class="wrapper header-container">
<h1 class="header-logo-container">
<a class="header-logo-link" href="./index.html">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg"
class="header-logo" title="Speedtest logo" viewBox="0 0 193 24">
<path
d="M35.7 19.3l1.9-2.3c1.7 1.5 3.5 2.4 5.8 2.4 2 0 3.2-.9 3.2-2.3V17c0-1.3-.7-2-4.1-2.8-3.9-.9-6.1-2.1-6.1-5.5 0-3.1 2.6-5.3 6.3-5.3 2.7 0 4.8.8 6.7 2.3l-1.7 2.4c-1.6-1.2-3.3-1.9-5-1.9-1.9 0-3 1-3 2.2v.1c0 1.4.8 2.1 4.4 2.9 3.9.9 5.9 2.3 5.9 5.4v.1c0 3.4-2.7 5.5-6.6 5.5-2.9-.2-5.5-1.1-7.7-3.1m23.9-6.1c2.4 0 3.9-1.4 3.9-3.3 0-2.2-1.5-3.3-3.9-3.3h-3.7v6.6h3.7zm-7-9.5h7.2c4.3 0 7 2.4 7 6.1v.1c0 4.1-3.3 6.3-7.3 6.3h-3.6V22h-3.2l-.1-18.3zm17 0h13.6v2.8H72.8v4.8H82v2.9h-9.2v4.9h10.5V22H69.6zm17 0h13.6v2.8H89.8v4.8H99v2.9h-9.2v4.9h10.5V22H86.6zm20.2 2.9v12.5h3.6c3.8 0 6.4-2.6 6.4-6.2v-.1c0-3.6-2.5-6.2-6.4-6.2h-3.6zm-3.2-2.9h6.8c5.8 0 9.7 3.9 9.7 9.1v.1c0 5.2-4 9.2-9.7 9.2h-6.8V3.7zm24.2 2.9H122V3.7h14.9v2.9h-5.8V22h-3.3zm12.5-2.9h13.6v2.8h-10.4v4.8h9.2v2.9h-9.2v4.9H154V22h-13.7zm16.3 15.6l1.9-2.3c1.7 1.5 3.5 2.4 5.8 2.4 2 0 3.2-.9 3.2-2.3V17c0-1.3-.7-2-4.1-2.8-3.9-.9-6.1-2.1-6.1-5.5 0-3.1 2.6-5.3 6.3-5.3 2.7 0 4.8.8 6.7 2.3l-1.7 2.4c-1.6-1.2-3.3-1.9-5-1.9-1.9 0-3 1-3 2.2v.1c0 1.4.8 2.1 4.4 2.9 3.9.9 5.9 2.3 5.9 5.4v.1c0 3.4-2.7 5.5-6.6 5.5-2.9-.2-5.5-1.1-7.7-3.1m22.1-12.7h-5.8V3.7h14.9v2.9H182V22h-3.3zM23 23c2.3-2.3 3.8-5.5 3.8-9.1C26.8 6.8 21 1 13.9 1 6.8 1 1 6.8 1 13.9c0 3.6 1.4 6.8 3.8 9.1l1.8-1.8c-1.9-1.9-3-4.4-3-7.3 0-5.7 4.6-10.3 10.3-10.3 5.7 0 10.3 4.6 10.3 10.3 0 2.8-1.2 5.4-3 7.3L23 23z">
</path>
<path
d="M13.5 16.5l-2.2-2.3 7.3-6.4 1.3 1.4zM190.8 5.1c.2 0 .4-.1.4-.3 0-.2-.1-.3-.4-.3h-.5v.6h.5zm-.8-.9h.8c.2 0 .4.1.5.2.1.1.2.2.2.4 0 .3-.2.5-.4.5l.5.7h-.4l-.4-.6h-.4V6h-.4V4.2z">
</path>
<path
d="M190.7 3.6c-.8 0-1.5.7-1.5 1.5s.7 1.5 1.5 1.5 1.5-.7 1.5-1.5-.7-1.5-1.5-1.5m0 .2c.7 0 1.3.6 1.3 1.3 0 .7-.6 1.3-1.3 1.3-.7 0-1.3-.6-1.3-1.3 0-.7.5-1.3 1.3-1.3">
</path>
</svg>
</a>
</h1>
<div class="header-navigation-mobile-controls">
<button class="header-navigation-mobile-toggle" aria-label="Toggle navigation">
</button>
</div>
<nav class="header-navigation-menu">
<ul class="header-navigation-list">
<li class="header-navigation-list-item">
<a class="header-navigation-list-item-link text-white"
href="https://www.speedtest.net/apps">Apps</a>
<ul class="header-navigation-submenu">
<li class="header-navigation-submenu-list-item">
<a class="header-navigation-submenu-list-item-link"
href="https://www.speedtest.net/apps/ios">
<svg title="IOS" class="header-navigation-submenu-icon"
xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24">
<path
d="M7.339 19.816h-5.5c-.463 0-.811-.376-.839-.839V7.137a.84.84 0 0 1 .839-.839h5.5a.84.84 0 0 1 .839.839v11.839a.839.839 0 0 1-.839.84zm-5.5-12.998a.32.32 0 0 0-.318.318v11.839a.32.32 0 0 0 .318.318h5.529a.32.32 0 0 0 .318-.318V7.137a.32.32 0 0 0-.318-.318l-5.529-.001z">
</path>
<circle cx="4.589" cy="17.703" r=".579"></circle>
<circle cx="20.887" cy="12.058" r=".579"></circle>
<path
d="M22.189 19.816H9.076c-.145 0-.261-.116-.261-.261s.116-.261.261-.261H22.16a.32.32 0 0 0 .318-.318V5.024a.32.32 0 0 0-.318-.318H3.924a.32.32 0 0 0-.318.318V5.4c.029.145-.087.261-.232.289-.145.029-.261-.086-.29-.231v-.434a.84.84 0 0 1 .839-.839h18.266c.464-.001.811.376.811.839v13.982c0 .433-.376.81-.811.81z">
</path>
<path
d="M10.118 13.65h-.289v-2.374h.289v2.374zm-.144-2.866c-.116 0-.203-.058-.232-.174-.029-.116.058-.203.174-.232h.058c.116 0 .203.058.232.174.029.116-.058.203-.174.232h-.058zm2.113 2.924c-.926 0-1.505-.666-1.505-1.708s.579-1.708 1.505-1.708 1.505.666 1.505 1.708-.579 1.708-1.505 1.708zm3.039 0c-.695 0-1.187-.376-1.216-.955h.318c.029.405.405.666.926.666s.839-.261.839-.637c0-.318-.203-.492-.695-.608l-.405-.116c-.608-.145-.897-.405-.897-.839 0-.521.492-.926 1.129-.926s1.129.376 1.129.897h-.318c-.029-.376-.347-.637-.839-.637s-.782.289-.782.637c0 .289.203.463.695.579l.347.087c.666.174.955.434.955.868.001.608-.462.984-1.186.984zm-3.039-3.126c-.724 0-1.187.55-1.187 1.418s.463 1.418 1.187 1.418 1.187-.55 1.187-1.418-.463-1.418-1.187-1.418z">
</path>
</svg>
<span class="header-navigation-submenu-text">iOS</span>
</a>
</li>
<li class="header-navigation-submenu-list-item">
<a class="header-navigation-submenu-list-item-link"
href="https://www.speedtest.net/apps/android">
<svg title="Android" class="header-navigation-submenu-icon"
xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24">
<g transform="translate(-13 -12)">
<g transform="translate(13 12)">
<path
d="M7.334 19.816H1.817A.828.828 0 0 1 1 18.999V7.147c0-.476.374-.817.817-.817h5.517c.477 0 .817.374.817.817v11.851c.035.443-.34.818-.817.818zM1.817 6.807a.342.342 0 0 0-.341.341v11.851c0 .102.034.17.102.238a.309.309 0 0 0 .238.102h5.517c.17 0 .306-.136.306-.341V7.147a.342.342 0 0 0-.341-.341H1.817z">
</path>
<circle cx="4.576" cy="17.705" r=".579"></circle>
<circle cx="20.889" cy="12.051" r=".579"></circle>
<path
d="M22.183 19.816H9.071a.232.232 0 0 1-.238-.238c0-.136.102-.238.238-.238h13.112c.102 0 .17-.034.238-.102a.309.309 0 0 0 .102-.238V5.036a.309.309 0 0 0-.102-.238.309.309 0 0 0-.238-.102H3.929a.342.342 0 0 0-.341.341v.373c0 .102-.034.204-.136.238-.102.034-.204.068-.273 0s-.102-.136-.102-.238v-.409c0-.443.374-.817.852-.817h18.254c.443 0 .817.375.817.817v13.963c0 .477-.374.852-.817.852z">
</path>
</g>
</g>
<g transform="translate(-66.971 -261.917)">
<g transform="translate(480.526 -75.04) scale(1.32125)">
<path
d="M-304.522 265.499c-.16 0-.325.128-.325.354 0 .206.145.351.325.351.149 0 .215-.1.215-.1v.043c0 .021.019.044.043.044h.108v-.676h-.151v.086a.259.259 0 0 0-.215-.102zm.027.138c.132 0 .201.116.201.215 0 .11-.083.215-.201.215-.099 0-.199-.08-.199-.217 0-.122.086-.213.199-.213z">
</path>
<path
d="M-303.946 266.191a.042.042 0 0 1-.043-.044v-.633h.151v.084c.034-.052.101-.099.204-.099.168 0 .257.134.257.259v.433h-.105a.046.046 0 0 1-.046-.046v-.354c0-.07-.043-.154-.141-.154-.106 0-.169.1-.169.194v.359l-.108.001z">
</path>
<path
d="M-302.936 265.499c-.16 0-.325.128-.325.354 0 .206.145.351.325.351.149 0 .215-.1.215-.1v.043c0 .021.019.044.044.044h.108v-1.015h-.151v.424c-.001 0-.068-.101-.216-.101zm.027.138c.132 0 .201.116.201.215 0 .11-.082.215-.201.215-.099 0-.199-.08-.199-.217 0-.122.085-.213.199-.213z">
</path>
<path
d="M-302.36 266.191a.042.042 0 0 1-.043-.044v-.633h.151v.113a.186.186 0 0 1 .182-.12c.028 0 .054.005.054.005v.156s-.032-.013-.072-.013c-.106 0-.164.1-.164.194v.341l-.108.001z">
</path>
<path
d="M-301.1 266.191a.042.042 0 0 1-.043-.044v-.633h.151v.676l-.108.001z">
</path>
<path
d="M-300.549 265.499c-.16 0-.325.128-.325.354 0 .206.145.351.325.351.149 0 .215-.1.215-.1v.043c0 .021.019.044.043.044h.108v-1.015h-.151v.424a.258.258 0 0 0-.215-.101zm.027.138c.132 0 .201.116.201.215 0 .11-.083.215-.201.215-.099 0-.199-.08-.199-.217.001-.122.086-.213.199-.213z">
</path>
<circle cx="-301.069" cy="265.269" r=".1"></circle>
<path
d="M-301.618 265.499a.347.347 0 0 0-.352.352c0 .207.157.352.352.352a.352.352 0 0 0 0-.704zm.001.141c.116 0 .203.094.203.212 0 .12-.092.213-.203.213a.205.205 0 0 1-.202-.211c0-.13.094-.214.202-.214z">
</path>
</g>
<path
d="M82.331 272.342l.511-.885a.103.103 0 1 0-.178-.104l-.518.897a3.162 3.162 0 0 0-1.318-.281c-.478 0-.922.1-1.318.281l-.518-.897a.102.102 0 0 0-.141-.037.102.102 0 0 0-.037.141l.511.885a3.05 3.05 0 0 0-1.576 2.413h6.16a3.05 3.05 0 0 0-1.578-2.413zm-2.917 1.548a.258.258 0 1 1 0-.516.258.258 0 0 1 0 .516zm2.828 0a.258.258 0 1 1 0-.516.258.258 0 0 1 0 .516z">
</path>
</g>
</svg>
<span class="header-navigation-submenu-text">Android</span>
</a>
</li>
<li class="header-navigation-submenu-list-item">
<a class="header-navigation-submenu-list-item-link"
href="https://www.speedtest.net/apps/mac">
<svg title="MacOS" class="header-navigation-submenu-icon"
xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24">
<path
d="M12.023 8.677c-1.404 0-2.574 1.147-2.574 2.551s1.147 2.574 2.551 2.574 2.574-1.147 2.574-2.551c0-1.404-1.146-2.551-2.551-2.574zm1.241 4.119h-.304l-.936-1.334-.936 1.334h-.304l1.1-1.545-1.1-1.545h.304l.936 1.334.936-1.334h.304l-1.1 1.545 1.1 1.545z">
</path>
<path
d="M19.817 17.383H4.206a.79.79 0 0 1-.796-.796V5.891a.79.79 0 0 1 .796-.796h15.611a.79.79 0 0 1 .796.796v10.696a.79.79 0 0 1-.796.796zM4.206 5.494a.394.394 0 0 0-.398.398v10.696a.41.41 0 0 0 .398.398h15.611a.41.41 0 0 0 .398-.398V5.891a.41.41 0 0 0-.398-.398l-15.611.001zm18.607 13.41H1.187c-.117 0-.187-.117-.187-.21 0-.094.094-.164.187-.187h21.626a.226.226 0 0 1 .187.233c-.023.094-.094.164-.187.164z">
</path>
</svg>
<span class="header-navigation-submenu-text">Mac</span>
</a>
</li>
<li class="header-navigation-submenu-list-item">
<a class="header-navigation-submenu-list-item-link"
href="https://www.speedtest.net/apps/windows">
<svg title="Windows" class="header-navigation-submenu-icon"
xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24">
<path
d="M11.602 11.134V9.309l-1.989.234v1.591zm.281 0h2.504V8.981l-2.504.304zm-.281.257H9.613v1.592l1.989.234zm.281 0v1.849l2.504.305v-2.154z">
</path>
<path
d="M19.817 17.383H4.206a.79.79 0 0 1-.796-.796V5.891a.79.79 0 0 1 .796-.796h15.611a.79.79 0 0 1 .796.796v10.696a.79.79 0 0 1-.796.796zM4.206 5.494a.394.394 0 0 0-.398.398v10.696a.41.41 0 0 0 .398.398h15.611a.41.41 0 0 0 .398-.398V5.891a.41.41 0 0 0-.398-.398l-15.611.001zm18.607 13.41H1.187c-.117 0-.187-.117-.187-.21 0-.094.094-.164.187-.187h21.626a.226.226 0 0 1 .187.233c-.023.094-.094.164-.187.164z">
</path>
</svg>
<span class="header-navigation-submenu-text">Windows</span>
</a>
</li>
<li class="header-navigation-submenu-list-item">
<a class="header-navigation-submenu-list-item-link"
href="https://www.speedtest.net/apps/chrome">
<svg title="Google Chrome" class="header-navigation-submenu-icon"
xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24">
<path
d="M22.153 20.898H1.815A.808.808 0 0 1 1 20.083V3.917c0-.456.359-.815.815-.815h20.37c.456 0 .815.359.815.815V20.05a.842.842 0 0 1-.847.848zM1.815 3.656a.28.28 0 0 0-.261.261V20.05c0 .13.098.261.261.261h20.37a.28.28 0 0 0 .261-.261V3.917a.258.258 0 0 0-.261-.261H1.815z">
</path>
<circle cx="3.151" cy="5.286" r=".456"></circle>
<circle cx="4.65" cy="5.286" r=".456"></circle>
<circle cx="6.15" cy="5.286" r=".456"></circle>
<path
d="M11.984 10.827c.684 0 1.271.554 1.271 1.271 0 .684-.554 1.271-1.271 1.271a1.272 1.272 0 0 1 0-2.542z">
</path>
<path
d="M11.984 13.89c-.652 0-1.271-.359-1.564-.913L8.855 10.24c-1.01 1.727-.424 3.976 1.336 4.954.359.228.782.359 1.206.424l1.043-1.825a1.281 1.281 0 0 1-.456.097zm0-3.617h3.161c-1.01-1.727-3.227-2.347-4.954-1.336-.358.227-.717.488-.978.814l1.043 1.825a1.717 1.717 0 0 1 1.728-1.303zm3.422.554h-2.119c.326.326.521.782.489 1.271 0 .326-.098.619-.228.913l-1.564 2.705c2.021 0 3.618-1.63 3.618-3.65a3.976 3.976 0 0 0-.196-1.239z">
</path>
</svg>
<span class="header-navigation-submenu-text">Chrome</span>
</a>
</li>
<li class="header-navigation-submenu-list-item">
<a class="header-navigation-submenu-list-item-link"
href="https://www.speedtest.net/apps/appletv">
<svg title="Apple TV" class="header-navigation-submenu-icon"
xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24">
<path
d="M12.899 10.51v-.364h-.501v-.569l-.501.114v.455h-.296v.364h.296v1.024a.778.778 0 0 0 .159.546.517.517 0 0 0 .432.159c.114 0 .25-.023.364-.046v-.387c-.068.023-.137.023-.205.023-.182 0-.25-.137-.25-.364v-.955h.502zm1.569-.364l-.319 1.092c-.046.182-.091.341-.137.501-.046-.159-.068-.319-.137-.501l-.319-1.092h-.546l.728 2.07h.501l.774-2.07h-.545zm-3.594.796c0-.228.114-.432.296-.523a.67.67 0 0 0-.523-.273c-.228-.023-.432.137-.546.137s-.296-.137-.478-.114a.645.645 0 0 0-.569.341c-.25.432-.068 1.069.182 1.411.114.182.25.364.432.364s.25-.114.455-.114c.205 0 .273.114.455.114s.319-.182.432-.341c.091-.114.159-.273.205-.41a.731.731 0 0 1-.341-.592zm-.614-1.251a.6.6 0 0 0-.16.432.487.487 0 0 0 .41-.205.576.576 0 0 0 .137-.455.758.758 0 0 0-.387.228z">
</path>
<path
d="M22.34 4.663H1.637A.636.636 0 0 0 1 5.3v11.148c0 .341.273.637.637.637h10.192v1.888H8.758c-.091 0-.182.068-.182.182s.068.182.182.182h6.484c.091 0 .182-.068.182-.182s-.068-.182-.182-.182h-3.071v-1.888h10.192a.636.636 0 0 0 .637-.637V5.3c-.046-.364-.319-.637-.66-.637zm.296 11.762a.277.277 0 0 1-.273.273H1.66a.277.277 0 0 1-.273-.273V5.277c0-.159.137-.273.273-.273h20.703c.159 0 .273.137.273.273v11.148z">
</path>
</svg>
<span class="header-navigation-submenu-text">Apple TV</span>
</a>
</li>
<li class="header-navigation-submenu-list-item">
<a class="header-navigation-submenu-list-item-link"
href="https://www.speedtest.net/apps/cli">
<svg title="CLI" class="header-navigation-submenu-icon"
xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24">
<g transform="translate(-16 -12)" id="Symbols">
<g id="icon-cli-copy" transform="translate(16 12)">
<path id="Shape"
d="M22.179 20.898H1.821A.821.821 0 0 1 1 20.073V3.927a.82.82 0 0 1 .821-.825h20.357a.821.821 0 0 1 .822.825v16.146a.822.822 0 0 1-.821.825zM1.821 3.663a.26.26 0 0 0-.26.264v16.146a.26.26 0 0 0 .261.264h20.357a.26.26 0 0 0 .261-.264V3.927a.26.26 0 0 0-.261-.264H1.821z">
</path>
<circle id="Oval" cx="3.161" cy="5.279" r=".453">
</circle>
<circle cx="4.67" cy="5.279" r=".453"></circle>
<circle cx="6.179" cy="5.279" r=".453"></circle>
<path id="Path"
d="M8.369 14.836a.42.42 0 0 1-.3-.127.423.423 0 0 1 0-.606l1.975-1.982-1.975-1.982a.43.43 0 0 1 .607-.606l2.281 2.281a.43.43 0 0 1 0 .606l-2.281 2.281a.431.431 0 0 1-.307.135z">
</path>
<path
d="M15.644 13.923h-3.227a.43.43 0 0 0 0 .858h3.227a.43.43 0 0 0 0-.858z">
</path>
</g>
</g>
</svg>
<span class="header-navigation-submenu-text">CLI</span>
</a>
</li>
<li class="header-navigation-submenu-list-item">
<a class="header-navigation-submenu-list-item-link"
href="https://www.speedtest.net/apps/vpn">
<svg title="VPN" class="header-navigation-submenu-icon"
xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24">
<path
d="M16.7 22.3H6.4c-.3 0-.5-.1-.5-.4v-20c0-.3.2-.6.5-.6h10.2c.4 0 .5.2.5.6v20c0 .2-.1.4-.4.4zm0-21.5H6.4c-.6 0-1 .5-1 1v20c0 .7.3 1 1 1h10.4c.5 0 .8-.3.8-.9V1.8c0-.6-.3-1-.9-1z">
</path>
<path
d="M12.5 20.1h-1.9c-.2 0-.3.1-.3.3 0 .2.1.3.3.3h1.9c.2 0 .3-.1.3-.3s-.1-.3-.3-.3M10.3 9.2c0-.7.6-1.3 1.3-1.3s1.3.6 1.3 1.3v1.5h-2.6V9.2zm3.3 1.4h-.1V9.2c0-1-.8-1.9-1.9-1.9s-1.9.8-1.9 1.9v1.5h-.2c-.5 0-.9.4-.9.9V14c0 .6.4 1 .9 1h4.1c.5 0 .9-.4.9-.9v-2.5c0-.6-.4-1-.9-1z">
</path>
</svg>
<span class="header-navigation-submenu-text">VPN</span>
</a>
</li>
</ul>
</li>
<li class="header-navigation-list-item">
<a class="header-navigation-list-item-link text-white"
href="https://www.speedtest.net/insights">Analysis</a>
<ul class="header-navigation-submenu header-navigation-submenu-analysis">
<li class="header-navigation-submenu-list-item">
<a class="header-navigation-submenu-list-item-link"
href="https://www.ookla.com/articles">
<span class="header-navigation-submenu-text">Articles</span>
</a>
</li>
<li class="header-navigation-submenu-list-item">
<a class="header-navigation-submenu-list-item-link"
href="https://www.speedtest.net/global-index">
<span class="header-navigation-submenu-text">Speedtest Global Index™</span>
</a>
</li>
<li class="header-navigation-submenu-list-item">
<a class="header-navigation-submenu-list-item-link"
href="https://www.speedtest.net/performance">
<span class="header-navigation-submenu-text">Performance Directory</span>
</a>
</li>
<li class="header-navigation-submenu-list-item">
<a class="header-navigation-submenu-list-item-link"
href="https://www.speedtest.net/ookla-5g-map">
<span class="header-navigation-submenu-text">Ookla 5G Map</span>
</a>
</li>
</ul>
</li>
<li class="header-navigation-list-item">
<a class="header-navigation-list-item-link text-white"
href="https://www.speedtest.net/speedtest-servers">Network</a>
</li>
<li class="header-navigation-list-item">
<a class="header-navigation-list-item-link text-white"
href="https://www.speedtest.net/apps/cli">Developers</a>
</li>
<li class="header-navigation-list-item">
<a class="header-navigation-list-item-link text-white"
href="https://www.ookla.com/enterprise">Enterprise</a>
<ul class="header-navigation-submenu header-navigation-submenu-enterprise">
<li class="header-navigation-submenu-list-item">
<a class="header-navigation-submenu-list-item-link"
href="https://www.ookla.com/speedtest-intelligence">
<span class="header-navigation-submenu-text">Speedtest Intelligence</span>
</a>
</li>
<li class="header-navigation-submenu-list-item">
<a class="header-navigation-submenu-list-item-link"
href="https://www.ookla.com/cell-analytics">
<span class="header-navigation-submenu-text">Cell Analytics</span>
</a>
</li>
<li class="header-navigation-submenu-list-item">
<a class="header-navigation-submenu-list-item-link"
href="https://www.ookla.com/spatialbuzz">
<span class="header-navigation-submenu-text">SpatialBuzz</span>
</a>
</li>
<li class="header-navigation-submenu-list-item">
<a class="header-navigation-submenu-list-item-link"
href="https://www.ookla.com/speedtest-powered">
<span class="header-navigation-submenu-text">Speedtest Powered</span>
</a>
</li>
<li class="header-navigation-submenu-list-item">
<a class="header-navigation-submenu-list-item-link"
href="https://www.ookla.com/gis-solutions">
<span class="header-navigation-submenu-text">GIS Solutions</span>
</a>
</li>
<li class="header-navigation-submenu-list-item">
<a class="header-navigation-submenu-list-item-link"
href="https://www.ookla.com/speedtest-custom">
<span class="header-navigation-submenu-text">Speedtest Custom</span>
</a>
</li>
<li class="header-navigation-submenu-list-item">
<a class="header-navigation-submenu-list-item-link"
href="https://www.ookla.com/cellmaps">
<span class="header-navigation-submenu-text">CellMaps</span>
</a>
</li>
<li class="header-navigation-submenu-list-item">
<a class="header-navigation-submenu-list-item-link"
href="https://www.ookla.com/towersource">
<span class="header-navigation-submenu-text">TowerSource</span>
</a>
</li>
<li class="header-navigation-submenu-list-item">
<a class="header-navigation-submenu-list-item-link"
href="https://www.ookla.com/mapelements">
<span class="header-navigation-submenu-text">MapELEMENTS</span>
</a>
</li>
<li class="header-navigation-submenu-list-item">
<a class="header-navigation-submenu-list-item-link"
href="https://www.ookla.com/partnerships">
<span class="header-navigation-submenu-text">Partners & Programs</span>
</a>
</li>
<li class="header-navigation-submenu-list-item">
<a class="header-navigation-submenu-list-item-link"
href="https://downdetector.com/enterprise/">
<span class="header-navigation-submenu-text">Downdetector
Enterprise</span>
</a>
</li>
</ul>
</li>
<li class="header-navigation-list-item">
<a class="header-navigation-list-item-link text-white"
href="https://www.speedtest.net/about">About</a>
<ul class="header-navigation-submenu">
<li class="header-navigation-submenu-list-item">
<a class="header-navigation-submenu-list-item-link"
href="https://www.speedtest.net/about/press">
<span class="header-navigation-submenu-text">Press</span>
</a>
</li>
<li class="header-navigation-submenu-list-item">
<a class="header-navigation-submenu-list-item-link"
href="https://www.speedtest.net/about/knowledge">
<span class="header-navigation-submenu-text">Knowledge Base</span>
</a>
</li>
<li class="header-navigation-submenu-list-item">
<a class="header-navigation-submenu-list-item-link"
href="https://www.speedtest.net/about/advertising">
<span class="header-navigation-submenu-text">Advertise</span>
</a>
</li>
<li class="header-navigation-submenu-list-item">
<a class="header-navigation-submenu-list-item-link"
href="https://www.speedtest.net/about/careers">
<span class="header-navigation-submenu-text">Careers</span>
</a>
</li>
</ul>
</li>
<li class="header-navigation-list-item">
<a class="header-navigation-list-item-link text-white" href="https://www.speedtest.net/login">
<svg title="User icon referring to navigation bar login item"
xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg"
class="user-icon">
<defs>
<symbol id="ic_account-line" viewBox="0 0 24 24">
<path
d="M22.27 22.385a.73.73 0 0 1-.733-.727v-.483c0-1.337-.83-2.536-2.062-2.976-1.518-.545-4.037-1.194-7.475-1.194s-5.957.65-7.47 1.19c-1.23.44-2.06 1.638-2.06 2.975v.48a.735.735 0 0 1-1.47.004v-.48c0-1.957 1.22-3.706 3.036-4.355 1.622-.584 4.317-1.277 7.964-1.277s6.34.693 7.964 1.276C21.78 17.47 23 19.22 23 21.174v.48c0 .4-.33.73-.73.73zM12 3.085c2.425 0 4.4 1.975 4.4 4.4s-1.974 4.4-4.4 4.4-4.4-1.973-4.4-4.4 1.975-4.4 4.4-4.4m0-1.468a5.87 5.87 0 0 0 0 11.737 5.87 5.87 0 0 0 0-11.74v.003z">
</path>
</symbol>
</defs>
<use xlink:href="#ic_account-line"></use>
</svg>
Log In
</a>
<ul class="header-navigation-submenu">
<li class="header-navigation-submenu-list-item">
<a class="header-navigation-submenu-list-item-link"
href="https://www.speedtest.net/results">
<span class="header-navigation-submenu-text">Results History</span>
</a>
</li>
<li class="header-navigation-submenu-list-item">
<a class="header-navigation-submenu-list-item-link"
href="https://www.speedtest.net/settings">
<span class="header-navigation-submenu-text">Settings</span>
</a>
</li>
<li class="header-navigation-submenu-list-item">
<a class="header-navigation-submenu-list-item-link"
href="https://www.speedtest.net/help">
<span class="header-navigation-submenu-text">Help</span>
</a>
</li>
<li class="header-navigation-submenu-list-item">
<a class="header-navigation-submenu-list-item-link"
href="https://www.speedtest.net/register">
<span class="header-navigation-submenu-text">Create Account</span>
</a>
</li>
</ul>
</li>
</ul>
</nav>
</div>
</header>
<main class="main">
<div class="wrapper">
<section class="main-network-test">
<header class="main-results-settings-container">
<ul class="main-results-settings-list">
<li class="main-results-settings-list-item">
<a href="https://www.speedtest.net/results"
class="text-uppercase main-results-settings-list-item-link">
<svg xmlns:xlink="http://www.w3.org/1999/xlink"
title="Check icon referring to all previous measurement results"
xmlns="http://www.w3.org/2000/svg" class="svg-icon svg-icon-larger icon"
id="check-icon">
<defs>
<symbol id="ic_checkcircle" viewBox="0 0 24 24">
<path
d="M6.497 12.47c0-.24.095-.487.28-.67a.956.956 0 0 1 1.344 0l1.864 1.846 5.027-5.01a.957.957 0 0 1 1.347 0 .94.94 0 0 1 .01 1.328l-.01.01-5.703 5.682a.955.955 0 0 1-1.345 0L6.77 13.14a.99.99 0 0 1-.273-.67z">
</path>
<path
d="M12 1.006C5.923 1.006 1 5.928 1 12s4.927 10.994 11 10.994c6.077 0 11-4.922 11-10.994S18.077 1.006 12 1.006zm.017 20.163C6.96 21.17 2.86 17.066 2.86 12c0-5.06 4.1-9.17 9.157-9.17s9.158 4.103 9.158 9.17-4.102 9.17-9.158 9.17z">
</path>
</symbol>
</defs>
<use xlink:href="#ic_checkcircle"></use>
</svg>
<span class="main-results-settings-list-item-text text-white">Results</span>
</a>
</li>
<li class="main-results-settings-list-item">
<a href="https://www.speedtest.net/settings"
class="text-uppercase main-results-settings-list-item-link">
<svg xmlns:xlink="http://www.w3.org/1999/xlink"
title="Gear icon for network analytics settings" xmlns="http://www.w3.org/2000/svg"
class="svg-icon svg-icon-larger icon" id="settings-icon">
<defs>
<symbol id="ic_settingsalt" viewBox="0 0 24 24">
<path
d="M21.783 14.12l-1.354-1.2c.038-.33.06-.634.06-.925 0-.297-.017-.594-.06-.924l1.353-1.193a1.94 1.94 0 0 0 .39-2.42l-1.116-1.91a1.964 1.964 0 0 0-2.3-.87l-1.722.562a8.716 8.716 0 0 0-1.634-.936l-.368-1.755c-.188-.9-.99-1.55-1.916-1.55h-2.23c-.917 0-1.72.65-1.913 1.546l-.37 1.756a8.53 8.53 0 0 0-1.633.935L5.247 4.66a1.97 1.97 0 0 0-2.3.868L1.83 7.438a1.94 1.94 0 0 0 .39 2.42l1.35 1.195c-.04.33-.062.638-.062.935 0 .297.017.6.06.93l-1.353 1.2a1.94 1.94 0 0 0-.39 2.42l1.122 1.916a1.964 1.964 0 0 0 2.3.87l1.728-.562c.506.37 1.05.682 1.634.93l.368 1.76c.187.9.99 1.548 1.915 1.548h2.23c.918 0 1.72-.65 1.914-1.546l.37-1.76a8.583 8.583 0 0 0 1.633-.936l1.722.56a1.972 1.972 0 0 0 2.3-.868l1.117-1.91a1.95 1.95 0 0 0-.397-2.42zm-.726 1.765l-1.117 1.91a.667.667 0 0 1-.78.29l-2.384-.775-.275.22c-.566.45-1.21.82-1.903 1.09l-.33.127-.512 2.443a.66.66 0 0 1-.644.517h-2.228a.656.656 0 0 1-.644-.517l-.512-2.438-.33-.127a7.237 7.237 0 0 1-1.904-1.084l-.27-.214-2.382.777a.67.67 0 0 1-.78-.292L2.94 15.903a.64.64 0 0 1 .132-.803l1.876-1.663-.055-.347c-.066-.413-.093-.76-.093-1.09s.028-.677.094-1.09l.055-.352-1.876-1.656a.64.64 0 0 1-.132-.803l1.123-1.916a.667.667 0 0 1 .78-.292l2.378.776.275-.22c.567-.45 1.21-.82 1.904-1.084l.33-.127.512-2.432a.66.66 0 0 1 .644-.517h2.23a.65.65 0 0 1 .643.517l.513 2.438.33.127c.693.27 1.337.633 1.904 1.09l.275.22 2.377-.776c.296-.1.626.028.78.292l1.117 1.91c.154.263.1.6-.132.802L19.05 10.57l.054.347c.06.407.094.754.094 1.084s-.028.672-.094 1.08l-.055.347 1.88 1.662c.226.2.28.53.127.795z">
</path>
<path
d="M12 15.23c-1.8 0-3.26-1.453-3.26-3.236S10.206 8.758 12 8.758s3.257 1.453 3.257 3.236S13.8 15.23 12 15.23zm0-5.178c-1.085 0-1.965.87-1.965 1.942s.88 1.942 1.964 1.942 1.963-.87 1.963-1.942-.88-1.942-1.964-1.942z">
</path>
</symbol>
</defs>
<use xlink:href="#ic_settingsalt"></use>
</svg>
<span class="main-results-settings-list-item-text text-white">Settings</span>
</a>
</li>
</ul>
</header>
<main class="main-result">
<div class="main-connection-test-button-container">
<div class="ring"></div>
<h2>
<a href="#" class="connection-test-button-link text-white text-uppercase">Go</a>
</h2>
</div>
<div class="main-connection-test-happening">
<div class="connection-parameters disabled">
<div class="parameter">
<div class="parameter-title">
<svg title="Ping icon" xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg" class="parameter-icon svg-icon" width="24.01"
height="23.99">
<defs>
<symbol id="icon-ping" viewBox="0 0 24.01 23.99">
<path
d="M48.5,169.61a1,1,0,0,0,.77.39h10a1,1,0,0,0,0-2H51.19l3.06-3.06a1,1,0,1,0-1.41-1.41l-4.54,4.54a1,1,0,0,0,0,1.41A1,1,0,0,0,48.5,169.61ZM54.26,159a12,12,0,1,0,12,12A12,12,0,0,0,54.26,159Zm0,22a10,10,0,1,1,10-10A10,10,0,0,1,54.28,181ZM60,172.39a1,1,0,0,0-.77-0.39h-10a1,1,0,1,0,0,2h8.09l-3.06,3.06a1,1,0,1,0,1.41,1.41l4.54-4.54a1,1,0,0,0,0-1.41A1,1,0,0,0,60,172.39Z"
transform="translate(-42.26 -159.01)"></path>
</symbol>
</defs>
<use xlink:href="#icon-ping"></use>
</svg>
<span class="parameter-name text-white text-uppercase">Ping</span>
<span class="parameter-unit">ms</span>
</div>
<span class="parameter-value text-white">45</span>
</div>
<div class="parameter">
<div class="parameter-title">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg"
class="parameter-icon svg-icon gauge-icon icon-gauge-download test-mode-multi"
title="Download icon" width="24.01" height="23.99">
<defs>
<symbol id="icon-download" viewBox="0 0 24.01 23.99">
<path
d="M54.26,198.5a12,12,0,1,0,12,12A12,12,0,0,0,54.26,198.5Zm0,22a10,10,0,1,1,10-10A10,10,0,0,1,54.28,220.5Zm5-11a1,1,0,0,0-.71.29l-3.3,3.3V205.5a1,1,0,0,0-2,0v7.59L50,209.8a1,1,0,1,0-1.42,1.42l5,5a1,1,0,0,0,1.42,0l5-5A1,1,0,0,0,59.28,209.5Z"
transform="translate(-42.26 -198.5)"></path>
</symbol>
</defs>
<use xlink:href="#icon-download"></use>
</svg>
<span class="parameter-name text-white text-uppercase">Download</span>
<span class="parameter-unit">Mbps</span>
</div>
<span class="parameter-value text-white">250.00</span>
</div>
<div class="parameter">
<div class="parameter-title">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg"
class="parameter-icon svg-icon gauge-icon icon-gauge-upload test-mode-multi"
title="Upload icon" wfd-invisible="true" width="24.01" height="23.99">
<defs>
<symbol id="icon-upload" viewBox="0 0 24.01 23.99">
<path
d="M54.26,238a12,12,0,1,0,12,12A12,12,0,0,0,54.26,238Zm0,22a10,10,0,1,1,10-10A10,10,0,0,1,54.28,260ZM55,244.28a1,1,0,0,0-1.42,0l-5,5A1,1,0,0,0,50,250.7l3.3-3.3V255a1,1,0,0,0,2,0v-7.59l3.3,3.3A1,1,0,0,0,60,249.29Z"
transform="translate(-42.26 -238)"></path>
</symbol>
</defs>
<use xlink:href="#icon-upload"></use>
</svg>
<span class="parameter-name text-white text-uppercase">Upload</span>
<span class="parameter-unit">Mbps</span>
</div>
<span class="parameter-value text-white">90.00</span>
</div>
</div>
<div id="download-upload-line-graphic"></div>
<img class="network-speedometer disabled" src="./img/speedometer.png" alt="Speedometer">
</div>
<div class="main-connection-information">
<div class="connection-company">
<div class="company-name-connection-ip-container">
<span class="company-name text-white">Company</span>
<span class="connection-ip text-gray">000.00.000.000</span>
</div>
<div class="main-result-icon-container user-icon-container">
<svg title="User icon referring to the internet operator section"
xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg"
class="svg-icon main-result-icon user-icon">
<defs>
<symbol id="ic_account-line" viewBox="0 0 24 24">
<path
d="M22.27 22.385a.73.73 0 0 1-.733-.727v-.483c0-1.337-.83-2.536-2.062-2.976-1.518-.545-4.037-1.194-7.475-1.194s-5.957.65-7.47 1.19c-1.23.44-2.06 1.638-2.06 2.975v.48a.735.735 0 0 1-1.47.004v-.48c0-1.957 1.22-3.706 3.036-4.355 1.622-.584 4.317-1.277 7.964-1.277s6.34.693 7.964 1.276C21.78 17.47 23 19.22 23 21.174v.48c0 .4-.33.73-.73.73zM12 3.085c2.425 0 4.4 1.975 4.4 4.4s-1.974 4.4-4.4 4.4-4.4-1.973-4.4-4.4 1.975-4.4 4.4-4.4m0-1.468a5.87 5.87 0 0 0 0 11.737 5.87 5.87 0 0 0 0-11.74v.003z">
</path>
</symbol>
</defs>
<use xlink:href="#ic_account-line"></use>
</svg>
</div>
</div>
<div class="server-information">
<div class="server-container">
<div class="main-result-icon-container globe-icon-container">
<svg title="Globe icon referring to the server section"
xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg"
class="svg-icon svg-icon-ms svg-icon-ring main-result-icon globe-icon">
<defs>
<symbol id="icon-internet" viewBox="0 0 24 24">
<path
d="M12 1C5.94 1 1 5.94 1 12s4.94 11 11 11 11-4.94 11-11S18.06 1 12 1zm9.444 10.247H16.99c-.11-3.487-.86-6.44-2.042-8.26 3.542 1.18 6.177 4.398 6.496 8.26zM12 21.444c-1.557 0-3.273-3.646-3.432-8.69h6.924c-.22 5.043-1.935 8.69-3.492 8.69zM8.568 11.247c.16-5.043 1.875-8.69 3.432-8.69s3.273 3.647 3.432 8.69H8.568zm.48-8.262C7.863 4.812 7.115 7.76 7.005 11.197H2.55c.325-3.812 2.96-7.03 6.497-8.212zm-6.492 9.768H7.01c.11 3.487.86 6.385 2.04 8.212-3.54-1.133-6.175-4.35-6.494-8.212zm12.397 8.26c1.183-1.825 1.93-4.773 2.04-8.21h4.455c-.323 3.812-2.958 7.03-6.495 8.21z">
</path>
</symbol>
</defs>
<use xlink:href="#icon-internet"></use>
</svg>
</div>
<div class="server-name-city">
<a target="_blank"
href="https://www.speedtest.net/api/js/perform-redirect?server_id=40785"
class="server-name text-white">Server name</a>
<span class="server-city text-gray">City</span>
<a href="#" class="server-link">Change Server</a>
</div>
</div>
</div>
</div>
</main>
<footer class="main-connection-type">
<span class="connections-text">Connections</span>
<div class="connections-container">
<a href="#" class="connection-type-link text-white" id="multi-connection">Multi</a>
<div class="main-result-icon-container connection-icon-container" tabindex="0">
<svg title="Icon referring to the multiple connection type"
xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg"
class="svg-icon svg-icon-ms svg-icon-ring active main-result-icon connection-icon"
data-mode="multi">
<defs>
<symbol id="ic_multi" viewBox="0 0 24 24">
<path
d="M1.733 3.44h1.955a.733.733 0 0 1 0 1.466H1.734a.733.733 0 0 1 0-1.466zM6.376 3.197a.978.978 0 0 1 0 1.956.98.98 0 0 1 0-1.956zM9.31 3.197a.978.978 0 0 1 0 1.956.978.978 0 0 1 0-1.956zM12.242 3.197a.978.978 0 0 1 0 1.956.978.978 0 0 1 0-1.956zM14.93 3.44h2.933a.733.733 0 0 1 0 1.466H14.93a.733.733 0 0 1 0-1.466z">
</path>
<path
d="M17.433 1.247l2.42 2.42a.734.734 0 0 1-1.037 1.037l-2.42-2.42a.732.732 0 0 1 1.037-1.037z">
</path>
<path
d="M16.397 6.076l2.42-2.42a.734.734 0 0 1 1.037 1.037l-2.42 2.42a.732.732 0 0 1-1.037-1.037z">
</path>
<path
d="M1.733 19.082h1.955a.733.733 0 0 1 0 1.466H1.734a.733.733 0 0 1 0-1.466zM6.376 18.837a.978.978 0 0 1 0 1.956.978.978 0 0 1-.978-.978c0-.54.44-.978.978-.978zM9.31 18.837a.978.978 0 0 1 0 1.956.98.98 0 0 1 0-1.956zM12.242 18.837a.978.978 0 0 1 0 1.956.978.978 0 0 1 0-1.956zM14.93 19.082h2.933a.733.733 0 0 1 0 1.466H14.93a.733.733 0 0 1 0-1.466z">
</path>
<path
d="M17.433 16.887l2.42 2.42a.734.734 0 0 1-1.037 1.037l-2.42-2.42a.734.734 0 0 1 1.037-1.037z">
</path>
<path
d="M16.397 21.716l2.42-2.42a.734.734 0 0 1 1.037 1.037l-2.42 2.42a.732.732 0 0 1-1.037-1.037z">
</path>
<path
d="M4.666 11.26H6.62a.733.733 0 0 1 0 1.466H4.667a.733.733 0 0 1 0-1.466zM9.31 11.017a.978.978 0 0 1 0 1.956.98.98 0 0 1 0-1.956zM12.242 11.017a.978.978 0 0 1 0 1.956.978.978 0 0 1 0-1.956zM15.174 11.017a.978.978 0 0 1 0 1.956.98.98 0 0 1 0-1.956zM17.863 11.26h2.933a.733.733 0 0 1 0 1.466h-2.934a.733.733 0 0 1 0-1.466z">
</path>
<path
d="M20.366 9.067l2.42 2.42a.734.734 0 0 1-1.037 1.037l-2.42-2.42a.734.734 0 0 1 1.037-1.037z">
</path>
<path
d="M19.33 13.896l2.418-2.42a.734.734 0 0 1 1.037 1.037l-2.42 2.42a.734.734 0 0 1-1.037-1.037z">
</path>
</symbol>
</defs>
<use xlink:href="#ic_multi"></use>
</svg>
<svg title="Icon referring to the single connection type"
xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg"
class="svg-icon svg-icon-sm svg-icon-ring main-result-icon connection-icon">
<defs>
<symbol id="ic_single" viewBox="0 0 24 24">
<path
d="M1.673 11.322H3.02a.673.673 0 0 1 0 1.346H1.673a.673.673 0 0 1 0-1.346zM5.49 11.097a.898.898 0 0 1 0 1.796.898.898 0 0 1 0-1.796zM8.182 11.097a.898.898 0 0 1 0 1.796.898.898 0 0 1 0-1.796zM10.875 11.097a.898.898 0 0 1 0 1.796.9.9 0 0 1 0-1.796zM13.57 11.097a.898.898 0 0 1 0 1.796.898.898 0 0 1 0-1.796zM16.262 11.097a.898.898 0 0 1 0 1.796.898.898 0 0 1 0-1.796zM18.73 11.322h2.245a.673.673 0 0 1 0 1.346H18.73a.672.672 0 0 1 0-1.346z">
</path>
<path
d="M20.58 9.306l2.223 2.222a.673.673 0 0 1-.952.952l-2.222-2.222a.673.673 0 0 1 0-.952.675.675 0 0 1 .95 0z">
</path>
<path
d="M19.63 13.74l2.22-2.22a.673.673 0 0 1 .952.952l-2.22 2.22a.673.673 0 0 1-.952-.952z">
</path>
</symbol>
</defs>
<use xlink:href="#ic_single"></use>
</svg>
</div>
<a href="#" class="connection-type-link text-gray" id="single-connection">Single</a>
</div>
</footer>
</section>
<section class="main-available-devices">
<div class="description-container">
<p class="description text-white">Use Speedtest® on all your devices with our free native apps.</p>
<p class="description text-white">Download Speedtest apps for:</p>
</div>
<ul class="device-list">
<li class="device android">
<a class="device-link" target="_blank" href="https://www.speedtest.net/apps/android">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg"
title="Download the app for Android devices" class="device-image" id="ic_android"
viewBox="0 0 24 24" width="24" height="24">
<g transform="translate(-13 -12)">
<g transform="translate(13 12)">
<path
d="M7.334 19.816H1.817A.828.828 0 0 1 1 18.999V7.147c0-.476.374-.817.817-.817h5.517c.477 0 .817.374.817.817v11.851c.035.443-.34.818-.817.818zM1.817 6.807a.342.342 0 0 0-.341.341v11.851c0 .102.034.17.102.238a.309.309 0 0 0 .238.102h5.517c.17 0 .306-.136.306-.341V7.147a.342.342 0 0 0-.341-.341H1.817z">
</path>
<circle cx="4.576" cy="17.705" r=".579"></circle>
<circle cx="20.889" cy="12.051" r=".579"></circle>
<path
d="M22.183 19.816H9.071a.232.232 0 0 1-.238-.238c0-.136.102-.238.238-.238h13.112c.102 0 .17-.034.238-.102a.309.309 0 0 0 .102-.238V5.036a.309.309 0 0 0-.102-.238.309.309 0 0 0-.238-.102H3.929a.342.342 0 0 0-.341.341v.373c0 .102-.034.204-.136.238-.102.034-.204.068-.273 0s-.102-.136-.102-.238v-.409c0-.443.374-.817.852-.817h18.254c.443 0 .817.375.817.817v13.963c0 .477-.374.852-.817.852z">
</path>
</g>
</g>
<g transform="translate(-66.971 -261.917)">
<g transform="translate(480.526 -75.04) scale(1.32125)">
<path
d="M-304.522 265.499c-.16 0-.325.128-.325.354 0 .206.145.351.325.351.149 0 .215-.1.215-.1v.043c0 .021.019.044.043.044h.108v-.676h-.151v.086a.259.259 0 0 0-.215-.102zm.027.138c.132 0 .201.116.201.215 0 .11-.083.215-.201.215-.099 0-.199-.08-.199-.217 0-.122.086-.213.199-.213z">
</path>
<path
d="M-303.946 266.191a.042.042 0 0 1-.043-.044v-.633h.151v.084c.034-.052.101-.099.204-.099.168 0 .257.134.257.259v.433h-.105a.046.046 0 0 1-.046-.046v-.354c0-.07-.043-.154-.141-.154-.106 0-.169.1-.169.194v.359l-.108.001z">
</path>
<path
d="M-302.936 265.499c-.16 0-.325.128-.325.354 0 .206.145.351.325.351.149 0 .215-.1.215-.1v.043c0 .021.019.044.044.044h.108v-1.015h-.151v.424c-.001 0-.068-.101-.216-.101zm.027.138c.132 0 .201.116.201.215 0 .11-.082.215-.201.215-.099 0-.199-.08-.199-.217 0-.122.085-.213.199-.213z">
</path>
<path
d="M-302.36 266.191a.042.042 0 0 1-.043-.044v-.633h.151v.113a.186.186 0 0 1 .182-.12c.028 0 .054.005.054.005v.156s-.032-.013-.072-.013c-.106 0-.164.1-.164.194v.341l-.108.001z">
</path>
<path d="M-301.1 266.191a.042.042 0 0 1-.043-.044v-.633h.151v.676l-.108.001z">
</path>
<path
d="M-300.549 265.499c-.16 0-.325.128-.325.354 0 .206.145.351.325.351.149 0 .215-.1.215-.1v.043c0 .021.019.044.043.044h.108v-1.015h-.151v.424a.258.258 0 0 0-.215-.101zm.027.138c.132 0 .201.116.201.215 0 .11-.083.215-.201.215-.099 0-.199-.08-.199-.217.001-.122.086-.213.199-.213z">
</path>
<circle cx="-301.069" cy="265.269" r=".1"></circle>
<path
d="M-301.618 265.499a.347.347 0 0 0-.352.352c0 .207.157.352.352.352a.352.352 0 0 0 0-.704zm.001.141c.116 0 .203.094.203.212 0 .12-.092.213-.203.213a.205.205 0 0 1-.202-.211c0-.13.094-.214.202-.214z">
</path>
</g>
<path
d="M82.331 272.342l.511-.885a.103.103 0 1 0-.178-.104l-.518.897a3.162 3.162 0 0 0-1.318-.281c-.478 0-.922.1-1.318.281l-.518-.897a.102.102 0 0 0-.141-.037.102.102 0 0 0-.037.141l.511.885a3.05 3.05 0 0 0-1.576 2.413h6.16a3.05 3.05 0 0 0-1.578-2.413zm-2.917 1.548a.258.258 0 1 1 0-.516.258.258 0 0 1 0 .516zm2.828 0a.258.258 0 1 1 0-.516.258.258 0 0 1 0 .516z">
</path>
</g>
</svg>
<span class="device-name text-gray">Android</span>
</a>
</li>
<li class="device ios">
<a class="device-link" target="_blank" href="https://www.speedtest.net/apps/ios">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg"
class="device-image" title="Download the app for iOS devices" id="ic_ios"
viewBox="0 0 24 24" width="24" height="24">
<path
d="M7.339 19.816h-5.5c-.463 0-.811-.376-.839-.839V7.137a.84.84 0 0 1 .839-.839h5.5a.84.84 0 0 1 .839.839v11.839a.839.839 0 0 1-.839.84zm-5.5-12.998a.32.32 0 0 0-.318.318v11.839a.32.32 0 0 0 .318.318h5.529a.32.32 0 0 0 .318-.318V7.137a.32.32 0 0 0-.318-.318l-5.529-.001z">
</path>
<circle cx="4.589" cy="17.703" r=".579"></circle>
<circle cx="20.887" cy="12.058" r=".579"></circle>
<path
d="M22.189 19.816H9.076c-.145 0-.261-.116-.261-.261s.116-.261.261-.261H22.16a.32.32 0 0 0 .318-.318V5.024a.32.32 0 0 0-.318-.318H3.924a.32.32 0 0 0-.318.318V5.4c.029.145-.087.261-.232.289-.145.029-.261-.086-.29-.231v-.434a.84.84 0 0 1 .839-.839h18.266c.464-.001.811.376.811.839v13.982c0 .433-.376.81-.811.81z">
</path>
<path
d="M10.118 13.65h-.289v-2.374h.289v2.374zm-.144-2.866c-.116 0-.203-.058-.232-.174-.029-.116.058-.203.174-.232h.058c.116 0 .203.058.232.174.029.116-.058.203-.174.232h-.058zm2.113 2.924c-.926 0-1.505-.666-1.505-1.708s.579-1.708 1.505-1.708 1.505.666 1.505 1.708-.579 1.708-1.505 1.708zm3.039 0c-.695 0-1.187-.376-1.216-.955h.318c.029.405.405.666.926.666s.839-.261.839-.637c0-.318-.203-.492-.695-.608l-.405-.116c-.608-.145-.897-.405-.897-.839 0-.521.492-.926 1.129-.926s1.129.376 1.129.897h-.318c-.029-.376-.347-.637-.839-.637s-.782.289-.782.637c0 .289.203.463.695.579l.347.087c.666.174.955.434.955.868.001.608-.462.984-1.186.984zm-3.039-3.126c-.724 0-1.187.55-1.187 1.418s.463 1.418 1.187 1.418 1.187-.55 1.187-1.418-.463-1.418-1.187-1.418z">
</path>
</svg>
<span class="device-name text-gray">iOS</span>
</a>
</li>
<li class="device windows">
<a class="device-link" target="_blank" href="https://www.speedtest.net/apps/windows">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg"
class="device-image" title="Download the app for Windows devices" id="ic_windows"
viewBox="0 0 24 24" width="24" height="24">
<path
d="M11.602 11.134V9.309l-1.989.234v1.591zm.281 0h2.504V8.981l-2.504.304zm-.281.257H9.613v1.592l1.989.234zm.281 0v1.849l2.504.305v-2.154z">
</path>
<path
d="M19.817 17.383H4.206a.79.79 0 0 1-.796-.796V5.891a.79.79 0 0 1 .796-.796h15.611a.79.79 0 0 1 .796.796v10.696a.79.79 0 0 1-.796.796zM4.206 5.494a.394.394 0 0 0-.398.398v10.696a.41.41 0 0 0 .398.398h15.611a.41.41 0 0 0 .398-.398V5.891a.41.41 0 0 0-.398-.398l-15.611.001zm18.607 13.41H1.187c-.117 0-.187-.117-.187-.21 0-.094.094-.164.187-.187h21.626a.226.226 0 0 1 .187.233c-.023.094-.094.164-.187.164z">
</path>
</svg>
<span class="device-name text-gray">Windows</span>
</a>
</li>
<li class="device mac">
<a class="device-link" target="_blank" href="https://www.speedtest.net/apps/mac">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg"
class="device-image" title="Download the app for macOS devices" id="ic_osx"
viewBox="0 0 24 24" width="24" height="24">
<path
d="M12.023 8.677c-1.404 0-2.574 1.147-2.574 2.551s1.147 2.574 2.551 2.574 2.574-1.147 2.574-2.551c0-1.404-1.146-2.551-2.551-2.574zm1.241 4.119h-.304l-.936-1.334-.936 1.334h-.304l1.1-1.545-1.1-1.545h.304l.936 1.334.936-1.334h.304l-1.1 1.545 1.1 1.545z">
</path>
<path
d="M19.817 17.383H4.206a.79.79 0 0 1-.796-.796V5.891a.79.79 0 0 1 .796-.796h15.611a.79.79 0 0 1 .796.796v10.696a.79.79 0 0 1-.796.796zM4.206 5.494a.394.394 0 0 0-.398.398v10.696a.41.41 0 0 0 .398.398h15.611a.41.41 0 0 0 .398-.398V5.891a.41.41 0 0 0-.398-.398l-15.611.001zm18.607 13.41H1.187c-.117 0-.187-.117-.187-.21 0-.094.094-.164.187-.187h21.626a.226.226 0 0 1 .187.233c-.023.094-.094.164-.187.164z">
</path>
</svg>
<span class="device-name text-gray">Mac</span>
</a>
</li>
<li class="device chrome">
<a class="device-link" target="_blank" href="https://www.speedtest.net/apps/chrome">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg"
class="device-image" title="Download the app for Chrome OS devices" id="ic_chrome"
viewBox="0 0 24 24" width="24" height="24">
<path
d="M22.153 20.898H1.815A.808.808 0 0 1 1 20.083V3.917c0-.456.359-.815.815-.815h20.37c.456 0 .815.359.815.815V20.05a.842.842 0 0 1-.847.848zM1.815 3.656a.28.28 0 0 0-.261.261V20.05c0 .13.098.261.261.261h20.37a.28.28 0 0 0 .261-.261V3.917a.258.258 0 0 0-.261-.261H1.815z">
</path>
<circle cx="3.151" cy="5.286" r=".456"></circle>
<circle cx="4.65" cy="5.286" r=".456"></circle>
<circle cx="6.15" cy="5.286" r=".456"></circle>
<path
d="M11.984 10.827c.684 0 1.271.554 1.271 1.271 0 .684-.554 1.271-1.271 1.271a1.272 1.272 0 0 1 0-2.542z">
</path>
<path
d="M11.984 13.89c-.652 0-1.271-.359-1.564-.913L8.855 10.24c-1.01 1.727-.424 3.976 1.336 4.954.359.228.782.359 1.206.424l1.043-1.825a1.281 1.281 0 0 1-.456.097zm0-3.617h3.161c-1.01-1.727-3.227-2.347-4.954-1.336-.358.227-.717.488-.978.814l1.043 1.825a1.717 1.717 0 0 1 1.728-1.303zm3.422.554h-2.119c.326.326.521.782.489 1.271 0 .326-.098.619-.228.913l-1.564 2.705c2.021 0 3.618-1.63 3.618-3.65a3.976 3.976 0 0 0-.196-1.239z">
</path>
</svg>
<span class="device-name text-gray">Chrome</span>
</a>
</li>
<li class="device appletv">
<a class="device-link" target="_blank" href="https://www.speedtest.net/apps/appletv">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg"
class="device-image" title="Download the app for Apple TV devices" id="ic_appletv"
viewBox="0 0 24 24" width="24" height="24">
<path
d="M12.899 10.51v-.364h-.501v-.569l-.501.114v.455h-.296v.364h.296v1.024a.778.778 0 0 0 .159.546.517.517 0 0 0 .432.159c.114 0 .25-.023.364-.046v-.387c-.068.023-.137.023-.205.023-.182 0-.25-.137-.25-.364v-.955h.502zm1.569-.364l-.319 1.092c-.046.182-.091.341-.137.501-.046-.159-.068-.319-.137-.501l-.319-1.092h-.546l.728 2.07h.501l.774-2.07h-.545zm-3.594.796c0-.228.114-.432.296-.523a.67.67 0 0 0-.523-.273c-.228-.023-.432.137-.546.137s-.296-.137-.478-.114a.645.645 0 0 0-.569.341c-.25.432-.068 1.069.182 1.411.114.182.25.364.432.364s.25-.114.455-.114c.205 0 .273.114.455.114s.319-.182.432-.341c.091-.114.159-.273.205-.41a.731.731 0 0 1-.341-.592zm-.614-1.251a.6.6 0 0 0-.16.432.487.487 0 0 0 .41-.205.576.576 0 0 0 .137-.455.758.758 0 0 0-.387.228z">
</path>
<path
d="M22.34 4.663H1.637A.636.636 0 0 0 1 5.3v11.148c0 .341.273.637.637.637h10.192v1.888H8.758c-.091 0-.182.068-.182.182s.068.182.182.182h6.484c.091 0 .182-.068.182-.182s-.068-.182-.182-.182h-3.071v-1.888h10.192a.636.636 0 0 0 .637-.637V5.3c-.046-.364-.319-.637-.66-.637zm.296 11.762a.277.277 0 0 1-.273.273H1.66a.277.277 0 0 1-.273-.273V5.277c0-.159.137-.273.273-.273h20.703c.159 0 .273.137.273.273v11.148z">
</path>
</svg>
<span class="device-name text-gray">AppleTV</span>
</a>
</li>
<li class="device cli">
<a class="device-link" target="_blank" href="https://www.speedtest.net/apps/cli">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg"
class="device-image" title="Download app for command-line interfaces" id="ic_cli"
viewBox="0 0 24 24" width="24" height="24">
<g transform="translate(-16 -12)" id="Symbols">
<g id="icon-cli-copy" transform="translate(16 12)">
<path id="Shape"
d="M22.179 20.898H1.821A.821.821 0 0 1 1 20.073V3.927a.82.82 0 0 1 .821-.825h20.357a.821.821 0 0 1 .822.825v16.146a.822.822 0 0 1-.821.825zM1.821 3.663a.26.26 0 0 0-.26.264v16.146a.26.26 0 0 0 .261.264h20.357a.26.26 0 0 0 .261-.264V3.927a.26.26 0 0 0-.261-.264H1.821z">
</path>
<circle id="Oval" cx="3.161" cy="5.279" r=".453"></circle>
<circle cx="4.67" cy="5.279" r=".453"></circle>
<circle cx="6.179" cy="5.279" r=".453"></circle>
<path id="Path"
d="M8.369 14.836a.42.42 0 0 1-.3-.127.423.423 0 0 1 0-.606l1.975-1.982-1.975-1.982a.43.43 0 0 1 .607-.606l2.281 2.281a.43.43 0 0 1 0 .606l-2.281 2.281a.431.431 0 0 1-.307.135z">
</path>
<path d="M15.644 13.923h-3.227a.43.43 0 0 0 0 .858h3.227a.43.43 0 0 0 0-.858z">
</path>
</g>
</g>
</svg>
<span class="device-name text-gray">CLI</span>
</a>
</li>
</ul>
</section>
<section class="main-other-information">
<div class="information-container">
<div class="information">
<img src="./img/lamp.svg" class="information-icon"
alt="Lamp image referring to the analyzes that can be visualized of the different types of network around the world">
<h3 class="information-title text-uppercase text-white">Ookla Insights™</h3>
<p class="information-detail text-gray">Read the latest analyses of mobile and fixed network
performance around the
world.</p>
<a target="_blank" href="https://www.ookla.com/analysis"
class="information-button">Subscribe</a>
</div>
<div class="information">
<img src="./img/globe-colorful.svg" class="information-icon"
alt="Image of the globe of the planet earth referring to the ranking of your current internet compared to other connections in the world">
<h3 class="information-title text-uppercase text-white">Speedtest Global Index™</h3>
<p class="information-detail text-gray">Find out how your country's internet ranks on the
Speedtest Global Index.
</p>
<a target="_blank" href="https://www.speedtest.net/global-index" class="information-button">See
Rankings</a>
</div>
<div class="information">
<img src="./img/5g-connection.svg" class="information-icon"
alt="Image of a 5G mobile connection antenna relative to the map showing the deployment status of this type of network based on your current location">
<h3 class="information-title text-uppercase text-white">Ookla 5G Map™</h3>
<p class="information-detail text-gray">Discover your nearest 5G deployment on the Ookla 5G Map.
</p>
<a target="_blank" href="https://www.speedtest.net/ookla-5g-map" class="information-button">View
Map</a>
</div>
<div class="information">
<img src="./img/enterprise.svg" class="information-icon"
alt="Image of an office building referring to how the data obtained from the Speedtest analysis can benefit your company">
<h3 class="information-title text-uppercase text-white">Enterprise Solutions</h3>
<p class="information-detail text-gray">Learn how to benefit from enterprise-level data on
network performance.</p>
<a target="_blank" href="https://www.ookla.com/enterprise" class="information-button">See
Solutions</a>
</div>
</div>
</section>
</div>
</main>
<footer class="footer">
<div class="wrapper">
<main class="footer-main-links">
<div class="speedtest-container links-container">
<h4>
<a class="text-uppercase footer-title" href="./index.html">Speedtest®</a>
</h4>
<ul class="footer-links-list">
<li>
<a class="footer-link" href="https://www.speedtest.net/about/advertising">Advertise</a>
</li>
<li>
<a class="footer-link" href="https://www.speedtest.net/ookla-5g-map">Ookla 5G
Map™</a>
</li>
<li>
<a class="footer-link" href="https://www.ookla.com/analysis">Ookla Analysis</a>
</li>
<li>
<a class="footer-link" href="https://www.speedtest.net/awards">Speedtest
Awards™</a>
</li>
<li>
<a class="footer-link" href="https://www.speedtest.net/global-index">Speedtest
Global Index™</a>
</li>
<li>
<a class="footer-link" href="https://www.speedtest.net/performance">Performance
Directory</a>
</li>
<li>
<a class="footer-link" href="https://www.speedtest.net/speedtest-servers">Speedtest
Servers™</a>
</li>
</ul>
<ul class="footer-links-list">
<li>
<a target="_blank" href="https://twitter.com/speedtest" class="footer-link social-media">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg"
title="Twitter social network icon" class="svg-icon svg-icon-larger icon" width="16"
height="16">
<defs>
<symbol id="icon-twitter-no-circle" viewBox="0 0 16 16">
<path
d="M16,3a6.62,6.62,0,0,1-1.89.52,3.3,3.3,0,0,0,1.44-1.82,6.59,6.59,0,0,1-2.09.8A3.28,3.28,0,0,0,7.79,4.78a3.36,3.36,0,0,0,.09.75A9.33,9.33,0,0,1,1.11,2.1,3.24,3.24,0,0,0,.67,3.75,3.28,3.28,0,0,0,2.13,6.48,3.28,3.28,0,0,1,.64,6.07v0A3.29,3.29,0,0,0,3.28,9.33a3.33,3.33,0,0,1-1.48.06,3.29,3.29,0,0,0,3.07,2.28,6.59,6.59,0,0,1-4.08,1.4A6.75,6.75,0,0,1,0,13,9.3,9.3,0,0,0,5,14.5a9.27,9.27,0,0,0,9.34-9.34c0-.14,0-0.28,0-0.43A6.67,6.67,0,0,0,16,3h0Z">
</path>
</symbol>
</defs>
<use xlink:href="#icon-twitter-no-circle"></use>
</svg>
Twitter
</a>
</li>
<li>
<a target="_blank" href="https://facebook.com/speedtest" class="footer-link social-media">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg"
title="Facebook social network icon" class="svg-icon svg-icon-larger icon"
width="16" height="16">
<defs>
<symbol id="icon-facebook-no-circle" viewBox="0 0 16 16">
<path
d="M6.55,15V8.8H4.46V6.39H6.55V4.61c0-1.62,1-3.18,2.61-3.18,0.7184,0,1.7321.026,2.35,0.09V3.67H10.23a1.0755,1.0755,0,0,0-1.1859.7065A1.58,1.58,0,0,0,9,4.85V6.39h2.39L11.12,8.8H9V15H6.55Z">