-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
4032 lines (3878 loc) · 166 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="pl">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Gaming Hub</title>
<link rel="stylesheet" href="./css/style.css" />
<link rel="shortcut icon" href="./img/ico.png" type="image/x-icon" alt="logo strony Gaming Hub" />
</head>
<body>
<div class="video-container">
<video id="myVideo" autoplay loop muted>
<source src="./video/w2.mp4" type="video/mp4" />
</video>
<div class="blocker"></div>
</div>
<header>
<h1>Gaming Hub</h1>
</header>
<nav>
<a href="#gry">Gry</a>
<a href="#aktualnosci">Aktualności</a>
<a href="#inne">Sklepy/inne</a>
</nav>
<main id="container">
<aside class="filtr">
<div class="panel">
<div class="wyszukiwanie">
<div class="panelwyszukiwania">
<img class="lupa" src="./img/lupa.png" alt="wyszukiwanie gry" />
<input type="search" name="" id="search" autocomplete="off" placeholder="Wyszukaj" />
</div>
<div class="trojkat"></div>
</div>
<div class="filtry">
<button class="buttonsort" id="usunfiltry">
Usun wszystkie filtry
<b>X</b>
</button>
<button class="buttonsort" id="usunulubione">
Usun ulubione
<b>X</b>
</button>
<button class="buttonsort" id="usunalfabetyczne">
Usun sort. alfabetyczne
<b>X</b>
</button>
</div>
<div class="filtrowanie">
<div class="Alfabetycznie sort">
<div class="p-img">
<p class="sortowanie-alfabetycznie text-sorting">Sortuj Alfabetycznie</p>
<div class="trojkat"></div>
</div>
<div class="az">
<input type="radio" id="az" name="opcje" value="opcja1" />
<label for="A-Z">Sortuj od A do Z</label>
</div>
<div class="za">
<input type="radio" id="za" name="opcje" value="opcja2" />
<label for="Z-A">Sortuj od Z do A</label>
</div>
</div>
<div class="sortowanie" id="sortowanieGry">
<div class="TrybGry sort">
<div class="p-img">
<p class="sortowanie-urzadzenie text-sorting">Tryb Gry</p>
<div class="trojkat"></div>
</div>
<div class="single">
<input type="checkbox" name="" id="single" />
<label for="single">Single-Player</label>
</div>
<div class="multi">
<input type="checkbox" name="" id="multi" />
<label for="multi">Multi-Player</label>
</div>
</div>
<div class="Gatunek sort">
<div class="p-img">
<p class="sortowanie-urzadzenie text-sorting">Gatunek Gry</p>
<div class="trojkat"></div>
</div>
<div class="FPS">
<input type="checkbox" name="" id="FPS" />
<label for="FPS" title="First-Person Shooter">FPS</label>
</div>
<div class="moba">
<input type="checkbox" name="" id="moba" />
<label for="moba" title="Multiplayer Online Battle Arena">MOBA</label>
</div>
<div class="MMORPG">
<input type="checkbox" name="" id="MMORPG" />
<label for="MMORPG" title="Massively Multiplayer Online Role-Playing Game">MMORPG</label>
</div>
<div class="Survival">
<input type="checkbox" name="" id="Survival" />
<label for="Survival">Survival</label>
</div>
<div class="Sandbox">
<input type="checkbox" name="" id="Sandbox" />
<label for="Sandbox">Sandbox</label>
</div>
<div class="BattleRoyale">
<input type="checkbox" name="" id="BattleRoyale" />
<label for="BattleRoyale">Battle Royale</label>
</div>
<div class="RPG">
<input type="checkbox" name="" id="rpg" />
<label for="RPG" title="Role-Playing Game">RPG</label>
</div>
<div class="Sportowe">
<input type="checkbox" name="" id="Sportowe" />
<label for="Sportowe">Sportowe</label>
</div>
<div class="Simulation">
<input type="checkbox" name="" id="Simulation" />
<label for="Simulation">Simulation</label>
</div>
<div class="Wyscigi">
<input type="checkbox" name="" id="Racing" />
<label for="Racing">Wyścigowe</label>
</div>
<div class="strategiczne">
<input type="checkbox" name="" id="Strategy" />
<label for="Strategy">strategiczne</label>
</div>
</div>
<div class="Urzadzenie sort">
<div class="p-img">
<p class="sortowanie-urzadzenie text-sorting">Urządzenie</p>
<div class="trojkat"></div>
</div>
<div class="pc">
<input type="checkbox" name="" id="pc" />
<label for="PC">PC</label>
</div>
<div class="ps">
<input type="checkbox" name="" id="ps" />
<label for="ps">PlayStation</label>
</div>
<div class="xbox">
<input type="checkbox" name="" id="xbox" />
<label for="xbox">Xbox</label>
</div>
<div class="swtich">
<input type="checkbox" name="" id="switch" />
<label for="switch">Nintendo Switch</label>
</div>
<div class="mobile">
<input type="checkbox" name="" id="mobilne" />
<label for="mobilne">mobilne</label>
</div>
</div>
<div class="Wydawca sort">
<div class="p-img">
<p class="sortowanie-platforma text-sorting">Wydawca Gry</p>
<div class="trojkat"></div>
</div>
<div class="Riot">
<input type="checkbox" name="" id="riot" />
<label for="Riot">Riot Games</label>
</div>
<div class="valve">
<input type="checkbox" name="" id="valve" />
<label for="valve">Valve Corporation</label>
</div>
<div class="Electronic Arts">
<input type="checkbox" name="" id="ea" />
<label for="ea">Electronic Arts</label>
</div>
<div class="Activision">
<input type="checkbox" name="" id="Activision" />
<label for="Activision">Activision</label>
</div>
<div class="Mojang Studios">
<input type="checkbox" name="" id="Mojang" />
<label for="Mojang">Mojang Studios</label>
</div>
<div class="Hi-Rez">
<input type="checkbox" name="" id="Hi-Rez" />
<label for="Hi-Rez">Hi-Rez Studios</label>
</div>
<div class="Blizzard">
<input type="checkbox" name="" id="Blizzard" />
<label for="Blizzard">Blizzard Entertainment</label>
</div>
<div class="Rockstar Games">
<input type="checkbox" name="" id="Rockstar" />
<label for="Rockstar">Rockstar Games</label>
</div>
<div class="2KSports">
<input type="checkbox" name="" id="2KSports" />
<label for="2KSports">2K Sports</label>
</div>
<div class="PUBGCorporation">
<input type="checkbox" name="" id="PUBGCorporation" />
<label for="PUBGCorporation">PUBG Corporation</label>
</div>
<div class="Psyonix">
<input type="checkbox" name="" id="Psyonix" />
<label for="Psyonix">Psyonix</label>
</div>
<div class="Wargaming">
<input type="checkbox" name="" id="Wargaming" />
<label for="Wargaming">Wargaming</label>
</div>
<div class="Klei Entertainment">
<input type="checkbox" name="" id="Klei" />
<label for="Klei">Klei Entertainment</label>
</div>
<div class="Studio Wildcard">
<input type="checkbox" name="" id="Wildcard" />
<label for="Wildcard">Studio Wildcard</label>
</div>
<div class="RespawnEntertainment">
<input type="checkbox" name="" id="RespawnEntertainment" />
<label for="RespawnEntertainment">Respawn Entertainment</label>
</div>
<div class="Webzen">
<input type="checkbox" name="" id="Webzen" />
<label for="Webzen">Webzen</label>
</div>
<div class="CDProjekt">
<input type="checkbox" name="" id="CDProjekt" />
<label for="CDProjekt">CD Projekt</label>
</div>
</div>
<div class="Platforma sort">
<div class="p-img">
<p class="sortowanie-platforma text-sorting">Platforma</p>
<div class="trojkat"></div>
</div>
<div class="steam">
<input type="checkbox" name="" id="steam" />
<label for="steam">Steam</label>
</div>
<div class="riotclient">
<input type="checkbox" name="" id="riotclient" />
<label for="riotclient">riot client</label>
</div>
<div class="origin">
<input type="checkbox" name="" id="origin" />
<label for="origin">Origin</label>
</div>
<div class="Epic">
<input type="checkbox" name="" id="epic" />
<label for="epic">Epic Games Store</label>
</div>
<div class="Uplay">
<input type="checkbox" name="" id="Uplay" />
<label for="Uplay">Uplay</label>
</div>
<div class="Wargaming">
<input type="checkbox" name="" id="Wargaming-palt" />
<label for="Wargaming">Wargaming</label>
</div>
<div class="GOG">
<input type="checkbox" name="" id="GOG" />
<label for="GOG">GOG Galaxy</label>
</div>
<div class="blattlenet">
<input type="checkbox" name="" id="blattlenet" />
<label for="blattlenet">Battle.net</label>
</div>
<div class="XboxStore">
<input type="checkbox" name="" id="XboxStore" />
<label for="XboxStore">Xbox Store</label>
</div>
<div class="PlayStationStore">
<input type="checkbox" name="" id="PlayStationStore" />
<label for="PlayStationStore">PlayStation Store</label>
</div>
<div class="GooglePlay">
<input type="checkbox" name="" id="GooglePlay" />
<label for="GooglePlay">Google Play Store</label>
</div>
<div class="AppStore">
<input type="checkbox" name="" id="AppStore" />
<label for="AppStore">App Store</label>
</div>
<div class="Nintendo eshop">
<input type="checkbox" name="" id="NintendoeShop" />
<label for="Nintendoeshop">Nintendo eShop</label>
</div>
<div class="Mojang Studios">
<input type="checkbox" name="" id="w-Mojang" />
<label for="Mojang2">Mojang Studios</label>
</div>
<div class="wyd-inne">
<input type="checkbox" name="" id="w-inne" />
<label for="inne">Inne</label>
</div>
</div>
</div>
<div class="sortowanie" id="sortowanieAkt">
<div class="TypStrony sort">
<div class="p-img">
<p class="sortowanie-urzadzenie text-sorting">Typ Strony</p>
<div class="trojkat"></div>
</div>
<div class="news">
<input type="checkbox" name="" id="news" />
<label for="Nowinki">Aktualności</label>
</div>
<div class="promocje">
<input type="checkbox" name="" id="promo" />
<label for="promocje">promocje</label>
</div>
<div class="forum">
<input type="checkbox" name="" id="forum" />
<label for="forum">forum</label>
</div>
<div class="recenzje">
<input type="checkbox" name="" id="recenzje" />
<label for="recenzje">recenzje</label>
</div>
<div class="poradniki">
<input type="checkbox" name="" id="poradniki" />
<label for="poradniki">Poradniki</label>
</div>
<div class="premiery">
<input type="checkbox" name="" id="premiery" />
<label for="premiery">premiery</label>
</div>
<div class="rankingi">
<input type="checkbox" name="" id="rankingi" />
<label for="rankingi">rankingi</label>
</div>
<div class="esport">
<input type="checkbox" name="" id="esport" />
<label for="esport">E-Sport</label>
</div>
</div>
</div>
<div class="sortowanie" id="sortowanieInne">
<div class="lokalizacja sort">
<div class="p-img">
<p class="sortowanie-lokalizacja text-sorting">Lokalizacja</p>
<div class="trojkat"></div>
</div>
<div class="Bydgoszcz">
<input type="checkbox" name="" id="bdg" />
<label for="Bydgoszcz">Bydgoszcz</label>
</div>
<div class="poznan">
<input type="checkbox" name="" id="poznan" />
<label for="poznan">Poznań</label>
</div>
<div class="Wroclaw">
<input type="checkbox" name="" id="Wroclaw" />
<label for="Wroclaw">Wrocław</label>
</div>
<div class="szczenin">
<input type="checkbox" name="" id="szczenin" />
<label for="szczenin">Szczenin</label>
</div>
<div class="torun">
<input type="checkbox" name="" id="torun" />
<label for="torun">Toruń</label>
</div>
<div class="Warszawa">
<input type="checkbox" name="" id="Warszawa" />
<label for="Warszawa">Warszawa</label>
</div>
<div class="Olsztyn">
<input type="checkbox" name="" id="Olsztyn" />
<label for="Olsztyn">Olsztyn</label>
</div>
<div class="Gdynia">
<input type="checkbox" name="" id="Gdynia" />
<label for="Gdynia">Gdynia</label>
</div>
<div class="lodz">
<input type="checkbox" name="" id="lodz" />
<label for="lodz">Łódź</label>
</div>
<div class="Czestochowa">
<input type="checkbox" name="" id="Czestochowa" />
<label for="Czestochowa">Częstochowa</label>
</div>
<div class="Radom">
<input type="checkbox" name="" id="Radom" />
<label for="Radom">Radom</label>
</div>
<div class="Krakow">
<input type="checkbox" name="" id="Krakow" />
<label for="Krakow">Kraków</label>
</div>
</div>
<div class="typsklepu sort">
<div class="p-img">
<p class="sortowanie-stan text-sorting">Typ Sklepu</p>
<div class="trojkat"></div>
</div>
<div class="online">
<input type="checkbox" name="" id="online" />
<label for="online">online</label>
</div>
<div class="stacjo">
<input type="checkbox" name="" id="stacjonarne" />
<label for="stacjo">stacjonarne</label>
</div>
</div>
<div class="stan sort">
<div class="p-img">
<p class="sortowanie-stan text-sorting">Stan Gry</p>
<div class="trojkat"></div>
</div>
<div class="nowe">
<input type="checkbox" name="" id="nowe" />
<label for="nowe">nowe</label>
</div>
<div class="uzywane">
<input type="checkbox" name="" id="uzywane" />
<label for="uzywane">używane</label>
</div>
</div>
<div class="rodzajgry sort">
<div class="p-img">
<p class="sortowanie-stan text-sorting">Rodzaj Gry</p>
<div class="trojkat"></div>
</div>
<div class="klucz">
<input type="checkbox" name="" id="klucz" />
<label for="klucz">Klucz</label>
</div>
<div class="pudelkowe">
<input type="checkbox" name="" id="pudelko" />
<label for="pudelkowe">Pudełkowe</label>
</div>
</div>
</div>
<div class="sortowanie" id="sortowanieStrony">
<div class="kategorie sort">
<div class="p-img">
<p class="sortowanie-kategorie text-sorting">Kategorie</p>
<div class="trojkat"></div>
</div>
<div class="stats">
<input type="checkbox" name="" id="stats" />
<label for="stats">Statystyki</label>
</div>
<div class="tierlista">
<input type="checkbox" name="" id="tierlista" />
<label for="tierlista">Tier Lista</label>
</div>
<div class="postacie">
<input type="checkbox" name="" id="champ" />
<label for="Postacie">Postacie</label>
</div>
<div class="potwory">
<input type="checkbox" name="" id="potwory" />
<label for="potwory">Potwory/Moby</label>
</div>
<div class="przedmioty">
<input type="checkbox" name="" id="item" />
<label for="przedmioty">Przedmioty</label>
</div>
<div class="mapy">
<input type="checkbox" name="" id="map" />
<label for="mapy">Mapy</label>
</div>
<div class="taktyki">
<input type="checkbox" name="" id="taktyki" />
<label for="taktyki">taktyki</label>
</div>
<div class="rankingi">
<input type="checkbox" name="" id="rank" />
<label for="rank">Rankingi</label>
</div>
<div class="wikipedia">
<input type="checkbox" name="" id="wiki" />
<label for="wiki">Wikipedia</label>
</div>
<div class="mecze">
<input type="checkbox" name="" id="mecze" />
<label for="mecze">Historia meczów</label>
</div>
<div class="talie">
<input type="checkbox" name="" id="talie" />
<label for="talie">talie</label>
</div>
<div class="skiny">
<input type="checkbox" name="" id="skiny" />
<label for="skiny">skiny</label>
</div>
<div class="baza">
<input type="checkbox" name="" id="baza" />
<label for="baza-danych">Baza danych</label>
</div>
<div class="creator">
<input type="checkbox" name="" id="creator" />
<label for="creator">Kreator</label>
</div>
<div class="poradniki">
<input type="checkbox" name="" id="poradnik" />
<label for="poradniki">poradniki</label>
</div>
<div class="mody">
<input type="checkbox" name="" id="mody" />
<label for="mody">mody</label>
</div>
<div class="auta">
<input type="checkbox" name="" id="auta" />
<label for="auta">Auta</label>
</div>
<div class="serwery">
<input type="checkbox" name="" id="serwer" />
<label for="serwery">Serwery</label>
</div>
<div class="dodatki">
<input type="checkbox" name="" id="dodatki" />
<label for="dodatki">dodatki</label>
</div>
<div class="bronie">
<input type="checkbox" name="" id="bron" />
<label for="bronie">Bronie</label>
</div>
<div class="komendy">
<input type="checkbox" name="" id="komendy" />
<label for="komendy">komendy</label>
</div>
</div>
</div>
</div>
<div class="zatwierdzanie">
<button id="confirm" type="submit">Zastosuj filtry</button>
</div>
</div>
</aside>
<aside class="rozwijanie">
<div class="arrow">
<div class="arrow1"></div>
<div class="arrow2"></div>
</div>
</aside>
<aside class="zakladka">
<section class="gry" id="gry">
<a href="#lol" class="gra" data-filtr="multi moba pc riot riotclient">
<img class="heart" src="./img/heartempty.png" alt="" />
<img class="img-gry" src="./img/gra/lol.jpg" />
<p class="nazwa nazwa-gry">League of legends</p>
<img class="img-logo" src="./img/logo/lollogo.png" alt="" style="bottom: -35%" />
</a>
<a
href="#lolwr"
class="gra"
data-filtr="multi moba mobilne riot GooglePlay AppStore"
alt="league of legends wild rift"
>
<img class="heart" src="./img/heartempty.png" alt="" />
<img class="img-gry" src="./img/gra/lolwr.jpg" alt="league of legends Wild Rift" />
<p class="nazwa nazwa-gry">League of legends Wild Rift</p>
<img class="img-logo" src="./img/logo/lolwrlogo.png" alt="" style="bottom: -45%" />
</a>
<a href="#lor" class="gra" data-filtr="multi strategy pc mobilne riot riotclient" alt="league of runterra">
<img class="heart" src="./img/heartempty.png" alt="" />
<img class="img-gry" src="./img/gra/lor.jpg" alt="league of Runeterra" />
<p class="nazwa nazwa-gry">Legends of Runeterra</p>
<img class="img-logo" src="./img/logo/lorlogo.png" alt="" style="bottom: -30%" />
</a>
<a href="#tft" class="gra" data-filtr="multi strategy pc mobilne riot riotclient" alt="Teamfight Tactics">
<img class="heart" src="./img/heartempty.png" alt="" />
<img class="img-gry" src="./img/gra/tft.jpg" alt="Teamfight Tactics" />
<p class="nazwa nazwa-gry">Teamfight Tactics</p>
<img class="img-logo" src="./img/logo/tftlogo.png" alt="" style="bottom: -47%" />
</a>
<a href="#smite" class="gra" data-filtr="multi moba pc ps xbox switch Hi-Rez steam" alt="smite">
<img class="heart" src="./img/heartempty.png" alt="" />
<img class="img-gry" src="./img/gra/smite.jpg" alt="smite" />
<p class="nazwa nazwa-gry">Smite</p>
<img class="img-logo" src="./img/logo/smitelogo.png" alt="" style="bottom: -29%" />
</a>
<a href="#dota" class="gra" data-filtr="multi moba pc valve steam" alt="dota 2">
<img class="heart" src="./img/heartempty.png" alt="" />
<img class="img-gry" src="./img/gra/dota.jpg" alt="dota" />
<p class="nazwa nazwa-gry">Dota 2</p>
<img class="img-logo" src="./img/logo/dotalogo.png" alt="" style="bottom: -20%" />
</a>
<a href="#eafc" class="gra" data-filtr="multi sports pc ps xbox switch ea origin" alt="EAFC">
<img class="heart" src="./img/heartempty.png" alt="" />
<img class="img-gry" src="./img/gra/eafc.jpg" alt="EA FC" />
<p class="nazwa nazwa-gry">EA FC</p>
<img class="img-logo" src="./img/logo/eafclogo.png" alt="" style="bottom: -21%" />
</a>
<a href="#rocket" class="gra" data-filtr="multi sports pc-ps-xbox-switch Psyonix epic" alt="Rocket League">
<img class="heart" src="./img/heartempty.png" alt="" />
<img class="img-gry" src="./img/gra/rocket.jpg" alt="Rocket League" />
<p class="nazwa nazwa-gry">Rocket League</p>
<img class="img-logo" src="./img/logo/rocketlogo.png" alt="" style="bottom: -33%" />
</a>
<a href="#nba" class="gra" data-filtr="single-multi sports pc-ps-xbox-switch 2KSports steam" alt="nba">
<img class="heart" src="./img/heartempty.png" alt="" />
<img class="img-gry" src="./img/gra/nba.jpg" alt="nba" />
<p class="nazwa nazwa-gry">NBA</p>
<img class="img-logo" src="./img/logo/nbalogo.png" alt="" style="bottom: -22%" />
</a>
<a
href="#cod"
class="gra"
data-filtr="single-multi FPS pc-ps-xbox-switch Activision blattlenet"
alt="Call of Duty"
>
<img class="heart" src="./img/heartempty.png" alt="" />
<img class="img-gry" src="./img/gra/cod.jpg" alt="cod" />
<p class="nazwa nazwa-gry">Call of Duty</p>
<img class="img-logo" src="./img/logo/codlogo.png" alt="" style="bottom: -20%" />
</a>
<a
href="#r6"
class="gra"
data-filtr="multi FPS pc-ps-xbox Ubisoft Uplay"
alt="Tom Clancy's Rainbow Six Siege"
>
<img class="heart" src="./img/heartempty.png" alt="" />
<img class="img-gry" src="./img/gra/r6.jpg" alt="r6" />
<p class="nazwa nazwa-gry">Rainbow Six Siege</p>
<img class="img-logo" src="./img/logo/r6logo.png" alt="" style="bottom: -27%" />
</a>
<a href="#cs" class="gra" data-filtr="multi FPS pc valve steam" alt="Counter-Strike">
<img class="heart" src="./img/heartempty.png" alt="" />
<img class="img-gry" src="./img/gra/cs2.jpg" alt="cs" />
<p class="nazwa nazwa-gry">Counter-Strike 2</p>
<img class="img-logo" src="./img/logo/cs2logo.png" alt="" style="bottom: -19%" />
</a>
<a href="#fortnite" class="gra" data-filtr="multi BattleRoyale pc ps xbox switch mobilne epic" alt="Fortnite">
<img class="heart" src="./img/heartempty.png" alt="" />
<img class="img-gry" src="./img/gra/fortnite.jpg" alt="Fortnite" />
<p class="nazwa nazwa-gry">Fortnite</p>
<img class="img-logo" src="./img/logo/fortnitelogo.png" alt="" style="bottom: -30%" />
</a>
<a href="#val" class="gra" data-filtr="multi FPS pc riot riotclient" alt="valorant">
<img class="heart" src="./img/heartempty.png" alt="" />
<img class="img-gry" src="./img/gra/val.jpg" alt="valorant" />
<p class="nazwa nazwa-gry">Valorant</p>
<img class="img-logo" src="./img/logo/vallogo.png" alt="" style="bottom: -14%" />
</a>
<a
href="#pubg"
class="gra"
data-filtr="multi battle-royale pc ps xbox switch mobilne PUBGCorporation steam"
alt="pubg"
>
<img class="heart" src="./img/heartempty.png" alt="" />
<img class="img-gry" src="./img/gra/pubg.jpg" alt="pubg" />
<p class="nazwa nazwa-gry">PlayerUnknown's Battlegrounds</p>
<img class="img-logo" src="./img/logo/pubglogo.png" alt="" style="bottom: -28%" />
</a>
<a
href="#apex"
class="gra"
data-filtr="multi battle-royale FPS pc ps xbox switch RespawnEntertainment origin"
alt="Apex"
>
<img class="heart" src="./img/heartempty.png" alt="" />
<img class="img-gry" src="./img/gra/apex.jpg" alt="Apex" />
<p class="nazwa nazwa-gry">Apex Legends</p>
<img class="img-logo" src="./img/logo/apexlogo.png" alt="" style="bottom: -53%" />
</a>
<a href="#ov" class="gra" data-filtr="multi FPS pc ps xbox switch Blizzard blattlenet" alt="Overwatch">
<img class="heart" src="./img/heartempty.png" alt="" />
<img class="img-gry" src="./img/gra/ov.jpg" alt="Overwatch" />
<p class="nazwa nazwa-gry">Overwatch 2</p>
<img class="img-logo" src="./img/logo/ovlogo.png" alt="" style="bottom: -9%" />
</a>
<a href="#bf" class="gra" data-filtr="multi FPS pc ps xbox switch ea origin" alt="Battlefield">
<img class="heart" src="./img/heartempty.png" alt="" />
<img class="img-gry" src="./img/gra/bf.jpg" alt="Battlefield" />
<p class="nazwa nazwa-gry">Battlefield</p>
<img class="img-logo" src="./img/logo/bflogo.png" alt="" style="bottom: -33%" />
</a>
<a
href="#mc"
class="gra"
data-filtr="single-multi sandbox pc ps xbox switch mobilne Mojang w-Mojang"
alt="Minecraft "
>
<img class="heart" src="./img/heartempty.png" alt="" />
<img class="img-gry" src="./img/gra/mc.jpg" alt="Minecraft " />
<p class="nazwa nazwa-gry">Minecraft</p>
<img class="img-logo" src="./img/logo/mclogo.png" alt="" style="bottom: -23%" />
</a>
<a href="#wow" class="gra" data-filtr="multi MMORPG pc mac Blizzard blattlenet" alt="World of Warcraft ">
<img class="heart" src="./img/heartempty.png" alt="" />
<img class="img-gry" src="./img/gra/wow.jpg" alt="World of Warcraft " />
<p class="nazwa nazwa-gry">World of Warcraft</p>
<img class="img-logo" src="./img/logo/wowlogo.png" alt="" style="bottom: -36%" />
</a>
<a
href="#wot"
class="gra"
data-filtr="multi strategy pc ps xbox switch Wargaming Wargaming-palt"
alt="world of tanks"
>
<img class="heart" src="./img/heartempty.png" alt="" />
<img class="img-gry" src="./img/gra/wot.jpg" alt="world of tanks" />
<p class="nazwa nazwa-gry">World of Tanks</p>
<img class="img-logo" src="./img/logo/wotlogo.png" alt="" style="bottom: -41%" />
</a>
<a href="#hs" class="gra" data-filtr="single simulation pc ps xbox Maxis origin" alt="Hearthstone">
<img class="heart" src="./img/heartempty.png" alt="" />
<img class="img-gry" src="./img/gra/hs.jpg" alt="Hearthstone" />
<p class="nazwa nazwa-gry">Hearthstone</p>
<img class="img-logo" src="./img/logo/hslogo.png" alt="" style="bottom: -26%" />
</a>
<a
href="#starve"
class="gra"
data-filtr="single multi survival pc ps xbox switch mobilne Klei steam"
alt="Dont Starve"
>
<img class="heart" src="./img/heartempty.png" alt="" />
<img class="img-gry" src="./img/gra/starve.png" alt="Dont Starve" />
<p class="nazwa nazwa-gry">Don't Starve</p>
<img class="img-logo" src="./img/logo/starvelogo.png" alt="" style="bottom: -47%" />
</a>
<a href="#warship" class="gra" data-filtr="multi MMORPG pc Smilegate steam" alt="world of warship">
<img class="heart" src="./img/heartempty.png" alt="" />
<img class="img-gry" src="./img/gra/warship.jpg" alt="world of warship" />
<p class="nazwa nazwa-gry">World of Warships</p>
<img class="img-logo" src="./img/logo/warshiplogo.png" alt="" style="bottom: -37%" />
</a>
<a href="#ark" class="gra" data-filtr="multi MMORPG Survival pc Smilegate steam" alt="Ark: Survival Evolved">
<img class="heart" src="./img/heartempty.png" alt="" />
<img class="img-gry" src="./img/gra/ark.jpg" alt="Ark: Survival Evolved" />
<p class="nazwa nazwa-gry">Ark: Survival Evolved</p>
<img class="img-logo" src="./img/logo/arklogo.png" alt="" style="bottom: -58%" />
</a>
<a href="#gta" class="gra" data-filtr="multi MMORPG pc Smilegate steam" alt="Grand Theft Auto">
<img class="heart" src="./img/heartempty.png" alt="" />
<img class="img-gry" src="./img/gra/gta.png" alt="Grand Theft Auto" />
<p class="nazwa nazwa-gry">Grand Theft Auto</p>
<img class="img-logo" src="./img/logo/gtalogo.png" alt="" style="bottom: -40%" />
</a>
<a href="#diablo" class="gra" data-filtr="multi MMORPG pc Smilegate steam" alt="diablo">
<img class="heart" src="./img/heartempty.png" alt="" />
<img class="img-gry" src="./img/gra/diablo.jpg" alt="diablo" />
<p class="nazwa nazwa-gry">diablo</p>
<img class="img-logo" src="./img/logo/diablologo.png" alt="" style="bottom: -29%" />
</a>
<a href="#metin" class="gra" data-filtr="multi MMORPG pc Webzen w-inne" alt="Metin">
<img class="heart" src="./img/heartempty.png" alt="" />
<img class="img-gry" src="./img/gra/metin.jpg" alt="metin" />
<p class="nazwa nazwa-gry">Metin 2</p>
<img class="img-logo" src="./img/logo/metinlogo.png" alt="" style="bottom: -25.5%" />
</a>
</section>
<section class="aktualnosci" id="aktualnosci">
<a class="strony" data-filtr="esport recenzje news" href="https://jarock.pl/" target="_blank" alt="jarock">
<div class="strona">
<img class="heart" src="./img/heartempty.png" alt="" />
<img class="img-strona" src="./img/strony/jarock.png" alt="" />
<div class="info">
<p class="nazwa nazwa-strony">Ja,Rock!</p>
<p class="p-info">- Nowości</p>
<p class="p-info">- Recenzje</p>
<p class="p-info">- Blog</p>
<p class="p-info">- Esport</p>
<p class="p-inne">i więcej</p>
</div>
</div>
</a>
<a class="strony" data-filtr="news recenzje forum" href="https://cdaction.pl/" target="_blank" alt="cdaction">
<div class="strona">
<img class="heart" src="./img/heartempty.png" alt="" />
<img class="img-strona" src="./img/strony/cda.png" alt="cdaction" />
<div class="info">
<p class="nazwa nazwa-strony">cdaction</p>
<p class="p-info">- Nowości</p>
<p class="p-info">- Recenzje</p>
<p class="p-info">- Technologie</p>
<p class="p-info">- Forum</p>
<p class="p-inne">i więcej</p>
</div>
</div>
</a>
<a
class="strony"
data-filtr="news premiery recenzje poradniki"
href="https://planetagracza.pl"
target="_blank"
alt="planeta gracza"
>
<div class="strona">
<img class="heart" src="./img/heartempty.png" alt="" />
<img class="img-strona" src="./img/strony/planetagracza.png" alt="" />
<div class="info">
<p class="nazwa nazwa-strony">Planeta Gracza</p>
<p class="p-info">- Nowości</p>
<p class="p-info">- Recenzje</p>
<p class="p-info">- Poradniki</p>
<p class="p-info">- Premiery</p>
<p class="p-inne">i więcej</p>
</div>
</div>
</a>
<a
class="strony"
data-filtr="news forum rankingi"
href="https://www.benchmark.pl/kategoria/gry.html"
target="_blank"
alt="benchmark"
>
<div class="strona">
<img class="heart" src="./img/heartempty.png" alt="" />
<img class="img-strona" src="./img/strony/benchmark.png" alt="" />
<div class="info">
<p class="nazwa nazwa-strony">benchmark</p>
<p class="p-info">- Nowości</p>
<p class="p-info">- Artykuły</p>
<p class="p-info">- Rankingi</p>
<p class="p-info">- Forum</p>
<p class="p-inne">i więcej</p>
</div>
</div>
</a>
<a class="strony" data-filtr="news poradniki " href="https://www.ppe.pl/news.html" target="_blank" alt="ppe">
<div class="strona">
<img class="heart" src="./img/heartempty.png" alt="" />
<img class="img-strona" src="./img/strony/ppe.png" alt="" />
<div class="info">
<p class="nazwa nazwa-strony">PPE</p>
<p class="p-info">- Nowości</p>
<p class="p-info">- Poradniki</p>
<p class="p-info">- Technologie</p>
<p class="p-inne">i więcej</p>
</div>
</div>
</a>
<a
class="strony"
data-filtr="news recenzje poradniki"
href="https://www.komputerswiat.pl/gamezilla"
target="_blank"
alt="komputer świat"
>
<div class="strona">
<img class="heart" src="./img/heartempty.png" alt="" />
<img class="img-strona" src="./img/strony/komswiat.jpg" alt="" />
<div class="info">
<p class="nazwa nazwa-strony">komputer swiat</p>
<p class="p-info">- Aktualności</p>
<p class="p-info">- Artykuły</p>
<p class="p-info">- Recenzje</p>
<p class="p-info">- Poradniki</p>
<p class="p-inne">i więcej</p>
</div>
</div>
</a>
<a
class="strony"
data-filtr="forum poradniki recenzje promo news"
href="https://www.gry-online.pl/newsroom/news/"
target="_blank"
alt="gry online"
>
<div class="strona">
<img class="heart" src="./img/heartempty.png" alt="" />
<img class="img-strona" src="./img/strony/gryonline.png" alt="" />
<div class="info">
<p class="nazwa nazwa-strony">gry-online</p>
<p class="p-info">- Nowości</p>
<p class="p-info">- Recenzje</p>
<p class="p-info">- Promocje</p>
<p class="p-info">- Poradniki</p>
<p class="p-info">- Forum</p>
<p class="p-inne">i więcej</p>
</div>
</div>
</a>
<a
class="strony"
data-filtr="forum recenzje news"
href="https://lowcygier.pl/aktualnosci/"
target="_blank"
alt="Łowcy gier"
>
<div class="strona">
<img class="heart" src="./img/heartempty.png" alt="" />
<img class="img-strona" src="./img/strony/lowcygier.png" alt="" />
<div class="info">
<p class="nazwa nazwa-strony">Łowcy gier</p>
<p class="p-info">- Aktualności</p>
<p class="p-info">- Recenzje</p>
<p class="p-info">- Forum</p>
</div>
</div>
</a>
<a
class="strony"
data-filtr="news recenzje esport"
href="https://www.eurogamer.pl/news"
target="_blank"
alt="eurogamer"
>
<div class="strona">
<img class="heart" src="./img/heartempty.png" alt="" />
<img class="img-strona" src="./img/strony/eurog.png" alt="" />
<div class="info">
<p class="nazwa nazwa-strony">eurogamer</p>
<p class="p-info">- Nowości</p>
<p class="p-info">- Recenzje</p>
<p class="p-info">- Blog</p>
<p class="p-info">- Esport</p>
<p class="p-inne">i więcej</p>
</div>
</div>
</a>
<a
class="strony"
data-filtr="news poradniki recenzje rankingi "
href="https://www.miastogier.pl/news.html"
target="_blank"
alt="miastogier"
>
<div class="strona">
<img class="heart" src="./img/heartempty.png" alt="" />
<img class="img-strona" src="./img/strony/miastogier.jpg" alt="" />
<div class="info">
<p class="nazwa nazwa-strony">miastogier</p>
<p class="p-info">- Recenzje</p>
<p class="p-info">- Artykuły</p>
<p class="p-info">- Poradniki</p>
<p class="p-info">- Rankingi</p>
<p class="p-inne">i więcej</p>
</div>
</div>
</a>
<a
class="strony"
data-filtr="news poradniki forum rankingi"
href="https://ithardware.pl/aktualnosci.html"
target="_blank"
alt="ithardware"
>
<div class="strona">
<img class="heart" src="./img/heartempty.png" alt="" />
<img class="img-strona" src="./img/strony/ithardware.png" alt="" />
<div class="info">
<p class="nazwa nazwa-strony">ithardware</p>
<p class="p-info">- Aktualności</p>
<p class="p-info">- Poradniki</p>
<p class="p-info">- Forum</p>
<p class="p-info">- Rankingi</p>
<p class="p-inne">i więcej</p>
</div>
</div>
</a>
<a
class="strony"
data-filtr="news premiery esport"
href="https://polskigamedev.pl"
target="_blank"
alt="polskigamedev"
>
<div class="strona">
<img class="heart" src="./img/heartempty.png" alt="" />
<img class="img-strona" src="./img/strony/pg.png" alt="" />
<div class="info">
<p class="nazwa nazwa-strony">polskigamedev</p>
<p class="p-info">- Aktualności</p>
<p class="p-info">- Przegląd tygodnia</p>
<p class="p-info">- Premiery</p>
<p class="p-info">- Wydarzenia</p>
<p class="p-inne">i więcej</p>
</div>
</div>
</a>
<a
class="strony"
data-filtr="news recenzje forum esport"
href="https://www.gram.pl/news/gry"
target="_blank"
alt="gram"
>
<div class="strona">
<img class="heart" src="./img/heartempty.png" alt="" />
<img class="img-strona" src="./img/strony/gram.jpg" alt="" />
<div class="info">
<p class="nazwa nazwa-strony">gram</p>
<p class="p-info">- Nowości</p>
<p class="p-info">- Recenzje</p>
<p class="p-info">- Forum</p>
<p class="p-info">- Esport</p>
<p class="p-inne">i więcej</p>
</div>
</div>
</a>
<a
class="strony"
data-filtr="news recenzje poradniki esport"
href="https://gamingsociety.pl/gry/"
target="_blank"
alt="gamingsociety"
>