-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
721 lines (666 loc) · 38.9 KB
/
Copy pathindex.html
File metadata and controls
721 lines (666 loc) · 38.9 KB
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
<!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">
<meta name="description" content="Here you find the latest games at exclusive prices.">
<meta name="keywords" content="ggs4all, gaming, ps5, consoles, game store">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,200;0,400;1,700&display=swap" rel="stylesheet">
<link href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css" rel="stylesheet">
<script src="https://kit.fontawesome.com/74be4f90e6.js" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/parallax/3.1.0/parallax.min.js"></script>
<link rel='stylesheet' href='https://cdn-uicons.flaticon.com/uicons-regular-rounded/css/uicons-regular-rounded.css'>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet">
<title>Welcome | GGS4ALL</title>
<link rel="shortcut icon" href="assets/favicon.ico" type="image/x-icon">
<style>
@font-face {
font-family: 'aquirebold';
src: url('aquirebold-8ma60-webfont.woff2') format('woff2'),
url('aquirebold-8ma60-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
body {
font-family: 'Barlow Condensed', sans-serif;
}
</style>
</head>
<body>
<nav id="navbar" class="z-40 text-gray-400 bg-scroll bg-gray-900 bg-opacity-20 hover:opacity-80 hover:bg-black body-font" style="position: fixed;top: 0;overflow: hidden;width: 100%;">
<div class="container flex flex-col flex-wrap items-center p-5 mx-auto md:flex-row">
<a class="flex items-center mb-4 text-white title-font font-large md:mb-0">
<a href="index.html" class="flex">
<img src="assets/logo.svg" alt="GG" srcset="" class="w-10 h-10">
<span class="ml-1 text-3xl" id="logo-title">GGS4ALL</span>
</a>
</a>
<nav class="flex flex-wrap items-center justify-center text-base md:ml-auto">
<a class="mr-5 text-lg hover:text-white" href="index.html">Home</a>
<a class="mr-5 text-lg hover:text-white">Deals</a>
<a class="mr-5 text-lg hover:text-white">Who are we?</a>
<a class="mr-5 text-lg hover:text-white">Our services</a>
</nav>
<button class="inline-flex items-center px-3 py-1 mt-4 text-base text-lg bg-gray-800 border-0 rounded bg-opacity-30 focus:outline-none hover:bg-gray-700 md:mt-0"><a href="contact.html">Contact</a>
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="w-4 h-4 ml-1" viewBox="0 0 24 24">
<path d="M5 12h14M12 5l7 7-7 7"></path>
</svg>
</button>
</div>
</nav>
<div id="first" style="width:100% ;height: 100vh; overflow: hidden; background-image: url(assets/hero/main.png); image-resolution: 1920 1080; background-size: contain;" >
<ul id="scene">
<li class="layer" data-depth="1">
<img src="assets/hero/gradientball.png" alt="" srcset="">
</li>
<li class="layer" data-depth="2">
<img src="assets/hero/hand.png" alt="" srcset="">
</li>
<li class="layer" data-depth="3">
<img src="assets/hero/controller.png" alt="" srcset="">
</li>
<li class="layer" data-depth="3">
<img src="assets/hero/text.png" alt="" srcset="">
</li>
</ul>
<!-- <img src="assets/herocover.png" alt="" srcset="" style="background-size: auto 90%; visibility: visible;"> -->
</div>
<script type="text/javascript">
var scene = document.getElementById('scene');
var parallax = new Parallax(scene , {
hoverOnly : true,
limitX : 3,
limitY : 3
});
</script>
<!-- blassa dyal l offre -->
<section class="fade-in-section text-gray-400 bg-fixed py-36 body-font " style=" background-image: url(./assets/frza.jpg);">
<div class="container flex flex-col items-center justify-center px-5 mx-auto" style="padding-top: 6rem; padding-bottom: 2rem;">
<div class="py-4" alt="hero">
<iframe width="1031" height="580" src="https://www.youtube.com/embed/6bfC-vvlbHc?autoplay=1&mute=1&controls=0&loop=1" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; modestbranding" allowfullscreen></iframe>
</div>
<div class="w-full text-center px-9 py-9 lg:w-2/3">
<div class="flex justify-center py-2">
<img class="w-48 px-3 py-2" src="assets/forza300px.png">
</div>
<h1 class="mb-4 text-3xl font-medium text-white title-font sm:text-4xl"> UPCOMING: Forza Horizon ™ 5</h1>
<p class="mb-8 leading-relaxed text-gray-300">Witness the power of Xbox Series X through Forza Motorsport. Automotive entertainment is reimagined for a new generation.</p>
<div class="flex justify-center">
<button class="inline-flex px-6 py-2 text-lg text-white bg-gradient-to-r from-pink-600 to-indigo-600 border-0 rounded focus:outline-none hover:bg-indigo-600">Learn More</button>
<button class="inline-flex px-6 py-2 ml-4 text-lg text-gray-400 bg-gray-800 border-0 rounded focus:outline-none hover:bg-gray-700 hover:text-white">Release Date</button>
</div>
</div>
</div>
</id>
</section>
<!--blassa dial lo3aab-->
<section class="fade-in-section text-gray-400 bg-black body-font">
<div class="container px-5 pt-16 mx-auto" style="background-color: black;">
<div class="flex flex-col text-center w-full mb-12">
<span class=>
<i class="fi-rr-crown"></i>
<h1 class="text-2xl font-medium text-white sm:text-3xl title-font">Exclusive Games</h1><br>
</span>
<p class="lg:w-2/3 mx-auto leading-relaxed text-base">Welcome dear client, On the occasion of our opening we suggest to you some of the best free games that you could find in GGS4ALL. <b>The games are limited by time.</b> </p>
</div>
<div class="flex flex-wrap -m-4">
<div class="p-4 md:w-1/3">
<div class="h-full border-2 border-gray-800 rounded-lg overflow-hidden">
<img class="lg:h-48 md:h-36 w-full object-cover object-center" src="assets/de59wy5-37180996-32e4-4083-913e-a467ef62920d.png" alt="blog">
<div class="p-6">
<h2 class="tracking-widest text-xs title-font font-medium text-gray-500 mb-1">ACTION</h2>
<h1 class="title-font text-lg font-medium text-white mb-3">God of war Ragnarok</h1>
<p class="leading-relaxed mb-3">Ragnarök, also known as the Twilight of the Gods, is a major event first prophesied by the Jötunn Gróa that foresees the ultimate battle that results in the death of many gods, including Odin and Thor, as well as the "rebirth" of the world through submersion into water.</p>
<div class="flex items-center flex-wrap ">
<button class="p-1 rounded-lg bg-gradient-to-r from-pink-600 to-indigo-600">
<a class="text-white inline-flex items-center md:mb-2 lg:mb-0">Buy Now
<svg class="w-4 h-4 ml-2" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path d="M5 12h14"></path>
<path d="M12 5l7 7-7 7"></path>
</svg>
</button>
</a>
<span class="text-gray-500 mr-3 inline-flex items-center lg:ml-auto md:ml-0 ml-auto leading-none text-sm pr-3 py-1 border-r-2 border-gray-800">
$66.99
</span>
<span class="text-gray-500 inline-flex items-center leading-none text-sm">
<svg class="w-4 h-4 mr-1" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" viewBox="0 0 24 24">
<path d="M21 11.5a8.38 8.38 0 01-.9 3.8 8.5 8.5 0 01-7.6 4.7 8.38 8.38 0 01-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 01-.9-3.8 8.5 8.5 0 014.7-7.6 8.38 8.38 0 013.8-.9h.5a8.48 8.48 0 018 8v.5z"></path>
</svg>6
</span>
</div>
</div>
</div>
</div>
<div class="p-4 md:w-1/3">
<div class="h-full border-2 border-gray-800 rounded-lg overflow-hidden">
<img class="lg:h-48 md:h-36 w-full object-cover object-center" src="assets/REV.png" alt="blog">
<div class="p-6">
<h2 class="tracking-widest text-xs title-font font-medium text-gray-500 mb-1">SURVIVALE HORROR GAME</h2>
<h1 class="title-font text-lg font-medium text-white mb-3">Resident Evil Village</h1>
<p class="leading-relaxed mb-3">The story is about a delinquent girl who ran away from her mother and encountered different creatures that gifted her with items, until she forcefully took the last object from the last creature and was punished by the creatures for it. </p>
<div class="flex items-center flex-wrap">
<button class="p-1 rounded-lg bg-gradient-to-r from-pink-600 to-indigo-600">
<a class="text-white inline-flex items-center md:mb-2 lg:mb-0">Buy Now
<svg class="w-4 h-4 ml-2" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path d="M5 12h14"></path>
<path d="M12 5l7 7-7 7"></path>
</svg>
</button>
</a>
<span class="text-gray-500 mr-3 inline-flex items-center lg:ml-auto md:ml-0 ml-auto leading-none text-sm pr-3 py-1 border-r-2 border-gray-800">
$45.5
</span>
<span class="text-gray-500 inline-flex items-center leading-none text-sm">
<svg class="w-4 h-4 mr-1" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" viewBox="0 0 24 24">
<path d="M21 11.5a8.38 8.38 0 01-.9 3.8 8.5 8.5 0 01-7.6 4.7 8.38 8.38 0 01-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 01-.9-3.8 8.5 8.5 0 014.7-7.6 8.38 8.38 0 013.8-.9h.5a8.48 8.48 0 018 8v.5z"></path>
</svg>6
</span>
</div>
</div>
</div>
</div>
<div class="p-4 md:w-1/3">
<div class="h-full border-2 border-gray-800 rounded-lg overflow-hidden">
<img class="lg:h-48 md:h-36 w-full object-cover object-center" src="assets/Demons souls.jpg" alt="blog">
<div class="p-6">
<h2 class="tracking-widest text-xs title-font font-medium text-gray-500 mb-1">ADVENTURE</h2>
<h1 class="title-font text-lg font-medium text-white mb-3">Demon's Souls</h1>
<p class="leading-relaxed mb-3">Demon's Souls takes place in the kingdom of Boletaria ... Now bound to the Nexus until the Old One is returned to slumber, the player travels to five regions of Boletaria, killing the powerful demons controlling those areas and absorbing their souls to increase their power so they can face King Allant.</p>
<div class="flex items-center flex-wrap ">
<button class="p-1 rounded-lg bg-gradient-to-r from-pink-600 to-indigo-600">
<a class="text-white inline-flex items-center md:mb-2 lg:mb-0">Buy Now
<svg class="w-4 h-4 ml-2" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path d="M5 12h14"></path>
<path d="M12 5l7 7-7 7"></path>
</svg>
</button>
</a>
<span class="text-gray-500 mr-3 inline-flex items-center lg:ml-auto md:ml-0 ml-auto leading-none text-sm pr-3 py-1 border-r-2 border-gray-800">
$30.75
</span>
<span class="text-gray-500 inline-flex items-center leading-none text-sm">
<svg class="w-4 h-4 mr-1" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" viewBox="0 0 24 24">
<path d="M21 11.5a8.38 8.38 0 01-.9 3.8 8.5 8.5 0 01-7.6 4.7 8.38 8.38 0 01-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 01-.9-3.8 8.5 8.5 0 014.7-7.6 8.38 8.38 0 013.8-.9h.5a8.48 8.48 0 018 8v.5z"></path>
</svg>6
</span>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="fade-in-section text-gray-400 bg-black body-font">
<div class="container px-5 py-24 mx-auto">
<div class="flex flex-col text-center w-full mb-12">
<h1 class="text-2xl font-medium text-white sm:text-3xl title-font">FREE GAMES</h1><br>
<p class="lg:w-2/3 mx-auto leading-relaxed text-base">Welcome dear client, On the occasion of our opening we suggest to you some of the best free games that you could find in GGS4ALL. <b>The games are limited by time.</b> </p>
</div>
<div class="flex flex-wrap mx-32 rounded-2xl p-2 bg-gray-700">
<div class="p-4 lg:w-1/4 md:w-1/2">
<div class="h-full flex flex-col items-center text-center">
<img alt="team" class="flex-shrink-0 rounded-lg w-full h-56 object-cover object-center mb-4 hover:opacity-60" src="assets/gta.jpg">
<div class="w-full">
<h2 class="title-font font-medium text-lg text-white">Grand Theft Auto : V</h2>
<h3 class="text-gray-500 mb-3">PS5/PS4/PS3/Xbox/PC</h3>
<p class="mb-4">Free till 25/07/2021.</p>
<span class="inline-flex">
<a class="text-gray-700">
<svg fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="w-5 h-5" viewBox="0 0 24 24">
<path d="M18 2h-3a5 5 0 00-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 011-1h3z"></path>
</svg>
</a>
<a class="ml-2 text-gray-700">
<svg fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="w-5 h-5" viewBox="0 0 24 24">
<path d="M23 3a10.9 10.9 0 01-3.14 1.53 4.48 4.48 0 00-7.86 3v1A10.66 10.66 0 013 4s-4 9 5 13a11.64 11.64 0 01-7 2c9 5 20 0 20-11.5a4.5 4.5 0 00-.08-.83A7.72 7.72 0 0023 3z"></path>
</svg>
</a>
<a class="ml-2 text-gray-700">
<svg fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="w-5 h-5" viewBox="0 0 24 24">
<path d="M21 11.5a8.38 8.38 0 01-.9 3.8 8.5 8.5 0 01-7.6 4.7 8.38 8.38 0 01-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 01-.9-3.8 8.5 8.5 0 014.7-7.6 8.38 8.38 0 013.8-.9h.5a8.48 8.48 0 018 8v.5z"></path>
</svg>
</a>
</span>
</div>
</div>
</div>
<div class="p-4 lg:w-1/4 md:w-1/2">
<div class="h-full flex flex-col items-center text-center">
<img alt="team" class="flex-shrink-0 rounded-lg w-full h-56 object-cover object-center mb-4 hover:opacity-60" src="assets/Genshin impact.jpg">
<div class="w-full">
<h2 class="title-font font-medium text-lg text-white">Genshin Impact</h2>
<h3 class="text-gray-500 mb-3">PS5/PS4/Nintendo Switch/Mobile/PC</h3>
<p class="mb-4">Free till 25/07/2021.</p>
<span class="inline-flex">
<a class="text-gray-700">
<svg fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="w-5 h-5" viewBox="0 0 24 24">
<path d="M18 2h-3a5 5 0 00-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 011-1h3z"></path>
</svg>
</a>
<a class="ml-2 text-gray-700">
<svg fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="w-5 h-5" viewBox="0 0 24 24">
<path d="M23 3a10.9 10.9 0 01-3.14 1.53 4.48 4.48 0 00-7.86 3v1A10.66 10.66 0 013 4s-4 9 5 13a11.64 11.64 0 01-7 2c9 5 20 0 20-11.5a4.5 4.5 0 00-.08-.83A7.72 7.72 0 0023 3z"></path>
</svg>
</a>
<a class="ml-2 text-gray-700">
<svg fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="w-5 h-5" viewBox="0 0 24 24">
<path d="M21 11.5a8.38 8.38 0 01-.9 3.8 8.5 8.5 0 01-7.6 4.7 8.38 8.38 0 01-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 01-.9-3.8 8.5 8.5 0 014.7-7.6 8.38 8.38 0 013.8-.9h.5a8.48 8.48 0 018 8v.5z"></path>
</svg>
</a>
</span>
</div>
</div>
</div>
<div class="p-4 lg:w-1/4 md:w-1/2">
<div class="h-full flex flex-col items-center text-center">
<img alt="team" class="flex-shrink-0 rounded-lg w-full h-56 object-cover object-center mb-4 hover:opacity-60" src="assets/valorant.jpg">
<div class="w-full">
<h2 class="title-font font-medium text-lg text-white">Valorant</h2>
<h3 class="text-gray-500 mb-3">PC</h3>
<p class="mb-4">Free till 25/07/2021.</p>
<span class="inline-flex">
<a class="text-gray-700">
<svg fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="w-5 h-5" viewBox="0 0 24 24">
<path d="M18 2h-3a5 5 0 00-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 011-1h3z"></path>
</svg>
</a>
<a class="ml-2 text-gray-700">
<svg fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="w-5 h-5" viewBox="0 0 24 24">
<path d="M23 3a10.9 10.9 0 01-3.14 1.53 4.48 4.48 0 00-7.86 3v1A10.66 10.66 0 013 4s-4 9 5 13a11.64 11.64 0 01-7 2c9 5 20 0 20-11.5a4.5 4.5 0 00-.08-.83A7.72 7.72 0 0023 3z"></path>
</svg>
</a>
<a class="ml-2 text-gray-700">
<svg fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="w-5 h-5" viewBox="0 0 24 24">
<path d="M21 11.5a8.38 8.38 0 01-.9 3.8 8.5 8.5 0 01-7.6 4.7 8.38 8.38 0 01-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 01-.9-3.8 8.5 8.5 0 014.7-7.6 8.38 8.38 0 013.8-.9h.5a8.48 8.48 0 018 8v.5z"></path>
</svg>
</a>
</span>
</div>
</div>
</div>
<div class="p-4 lg:w-1/4 md:w-1/2">
<div class="h-full flex flex-col items-center text-center">
<img alt="team" class="flex-shrink-0 rounded-lg w-full h-56 object-cover object-center mb-4 hover:opacity-60" src="assets/call-of-duty-warzone.jpg">
<div class="w-full">
<h2 class="title-font font-medium text-lg text-white">Call of Duty Warzone</h2>
<h3 class="text-gray-500 mb-3">PS5/PS4/Xbox/PC</h3>
<p class="mb-4">Free till 25/07/2021.</p>
<span class="inline-flex">
<a class="text-gray-700">
<svg fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="w-5 h-5" viewBox="0 0 24 24">
<path d="M18 2h-3a5 5 0 00-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 011-1h3z"></path>
</svg>
</a>
<a class="ml-2 text-gray-700">
<svg fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="w-5 h-5" viewBox="0 0 24 24">
<path d="M23 3a10.9 10.9 0 01-3.14 1.53 4.48 4.48 0 00-7.86 3v1A10.66 10.66 0 013 4s-4 9 5 13a11.64 11.64 0 01-7 2c9 5 20 0 20-11.5a4.5 4.5 0 00-.08-.83A7.72 7.72 0 0023 3z"></path>
</svg>
</a>
<a class="ml-2 text-gray-700">
<svg fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="w-5 h-5" viewBox="0 0 24 24">
<path d="M21 11.5a8.38 8.38 0 01-.9 3.8 8.5 8.5 0 01-7.6 4.7 8.38 8.38 0 01-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 01-.9-3.8 8.5 8.5 0 014.7-7.6 8.38 8.38 0 013.8-.9h.5a8.48 8.48 0 018 8v.5z"></path>
</svg>
</a>
</span>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="fade-in-section text-gray-400 bg-black body-font">
<div class="container px-5 pb-16 mx-auto">
<div class="flex flex-row">
<script src="https://cdn.jsdelivr.net/npm/animejs@3.0.1/lib/anime.min.js"></script>
<script type="text/javascript">
// anime({
// targets: '.line-drawing-demo .lines path',
// strokeDashoffset: [anime.setDashoffset, 0],
// easing: 'easeInOutSine',
// duration: 1500,
// delay: function(el, i) { return i * 250 },
// direction: 'alternate',
// loop: true
// });
var roundLogEl = document.querySelector('#mo');
let ahmad=anime({
targets: '#mo',
translateX: {
value: 250,
duration: 900
},
rotate: {
value: 360,
duration: 1800,
easing: 'easeInOutSine'
},
scale: {
value: 2,
duration: 1600,
delay: 800,
easing: 'easeInOutQuart'
},
});
document.querySelector('#mo').addEventListener('mouseover', () => {ahmad.play();})
</script>
<!-- <p class="text-4xl" style="padding-bottom: 3rem;">Top Deals:</p> -->
</div>
<div class="flex flex-col text-center w-full mb-12">
<span class=>
<i class="fi-rr-crown"></i>
<h1 class="text-2xl font-medium text-white sm:text-3xl title-font">Top Games</h1><br>
</span>
<p class="lg:w-2/3 mx-auto leading-relaxed text-base">Welcome dear client, On the occasion of our opening we suggest to you some of the best free games that you could find in GGS4ALL. <b>The games are limited by time.</b> </p>
</div>
<div class="flex flex-wrap -m-4">
<div class="w-full p-4 lg:w-1/4 md:w-1/2">
<button>
<a class="relative block overflow-hidden rounded h-70">
<img alt="ecommerce" class="w-full h-full opacity-100 hover:opacity-60 " src="./assets/spmiles.jpg">
</a>
</button>
<div class="mt-4">
<h3 class="mb-1 text-xs tracking-widest text-gray-500 title-font">Action/Adventure</h3>
<h2 class="text-lg font-medium text-white title-font"><a href="">Spider-Man Mile Morales</a></h2>
<p class="mt-1">$33.00 <strike>$68.99</strike></p>
</div>
</div>
<div class="w-full p-4 lg:w-1/4 md:w-1/2">
<button>
<a class="relative block overflow-hidden rounded h-70">
<img alt="ecommerce" class="w-full h-full opacity-100 hover:opacity-60 " src="./assets/RAG.jpg ">
</a>
</button>
<div class="mt-4">
<h3 class="mb-1 text-xs tracking-widest text-gray-500 title-font">Action/Adventure</h3>
<h2 class="text-lg font-medium text-white title-font"><a href="">Assassin's Creed Valhalla</a></h2>
<p class="mt-1">$59.99</p>
</div>
</div>
<div class="w-full p-4 lg:w-1/4 md:w-1/2">
<button>
<a class="relative block overflow-hidden rounded h-70">
<img alt="ecommerce" class="block object-cover object-center w-full h-full opacity-100 hover:opacity-60" src="./assets/The-Last-of-Us.jpg">
</a>
</button>
<div class="mt-4">
<h3 class="mb-1 text-xs tracking-widest text-gray-500 title-font">Horror/Action/Adventure</h3>
<h2 class="text-lg font-medium text-white title-font"><a href="">The Last of Us</a></h2>
<p class="mt-1">$42.00</p>
</div>
</div>
<div class="w-full p-4 lg:w-1/4 md:w-1/2">
<button>
<a class="relative block overflow-hidden rounded h-70">
<!-- yfjvhjhdcmvvkjgcvjghcbv mbnvnb nmbnbvmvvhvbn ncvncc bvmbnv -->
<img alt="ecommerce" class="w-full h-full opacity-100 hover:opacity-60 " src="./assets/Ghost-of-Tsushima.jpg">
</a>
</button>
<div class="mt-4">
<h3 class="mb-1 text-xs tracking-widest text-gray-500 title-font">Action/Adventure</h3>
<h2 class="text-lg font-medium text-white title-font"><a href="">Ghost of Tsushima</a></h2>
<p class="mt-1">$23.40</p>
</div>
</div>
<div class="w-full p-4 lg:w-1/4 md:w-1/2">
<button>
<a class="relative block overflow-hidden rounded h-90">
<img alt="ecommerce" class="w-full h-full opacity-100 hover:opacity-60" src="./assets/FIFA21.jpg">
</a>
</button>
<div class="mt-4">
<h3 class="mb-1 text-xs tracking-widest text-gray-500 title-font">Football/Sport</h3>
<h2 class="text-lg font-medium text-white title-font"><a href="">FIFA 21</a></h2>
<p class="mt-1">$79.00</p>
</div>
</div>
<div class="w-full p-4 lg:w-1/4 md:w-1/2" >
<button>
<a class="relative block overflow-hidden rounded h-70">
<img alt="ecommerce" class="w-full h-full opacity-100 hover:opacity-60" src="./assets/NBA.jpeg">
</a>
</button>
<div class="mt-4">
<h3 class="mb-1 text-xs tracking-widest text-gray-500 title-font">BasketBall/Sport</h3>
<h2 class="text-lg font-medium text-white title-font"><a href="">NBA 2K21</a> </h2>
<p class="mt-1">$44.15</p>
</div>
</div>
<div class="w-full p-4 lg:w-1/4 md:w-1/2" >
<button >
<a class="relative block overflow-hidden rounded h-70">
<img alt="ecommerce" class="w-full h-full opacity-100 hover:opacity-60" width="719" height=900 src="./assets/PES2021.jpg">
</a>
</button>
<div class="mt-4">
<h3 class="mb-1 text-xs tracking-widest text-gray-500 title-font">Football/Sport</h3>
<h2 class="text-lg font-medium text-white title-font"><a href="">Pro Evolution Soccer 2021</a></h2>
<p class="mt-1">$62.00</p>
</div>
</div>
<div class="w-full p-4 lg:w-1/4 md:w-1/2" >
<button>
<a class="relative block overflow-hidden rounded h-70">
<img alt="ecommerce" class="block object-cover object-center w-full h-full opacity-100 hover:opacity-60" src="./assets/needforspeed.jpg">
</a>
</button>
<div class="mt-4">
<h3 class="mb-1 text-xs tracking-widest text-gray-500 title-font">Racing/Sports</h3>
<h2 class="text-lg font-medium text-white title-font"><a href="">Need for speed : HEAT</a></h2>
<p class="mt-1">$22.40</p>
</div>
</div>
</div>
</div>
</section>
<!-- hna katsali blassa dial lo3aab-->
<!-- hady hya la partie li khdamin 3liha -->
<section class="fade-in-section py-6 text-gray-400 bg-black body-font">
<div class="mb-20 text-center">
<img src="" alt="">
<h1 class="mb-4 text-2xl font-medium text-white sm:text-3xl title-font">GGS4ALL in Numbers</h1>
<p class="mx-auto text-base leading-relaxed text-gray-400 xl:w-2/4 lg:w-3/4 text-opacity-80">We pushed boundaries we couldn't imagine</p>
<div class="flex justify-center mt-6">
<div class="inline-flex w-16 h-1 bg-pink-500 rounded-full"></div>
</div>
</div>
<!-- hadi animation -->
<div class="flex justify-between pr-6 pl-6 m-20">
<div class="">
<div class="flex justify-center">
<img class="w-16 rounded" src="assets/ICONS/gameRemote.png" alt="" srcset="">
</div>
<div class="flex justify-center text-4xl font-bold" id="ha" ></div>
<div class="flex justify-center text-xl py-8"><h1><b>Games sold</b> <br> in our store.</h1></div>
</div>
<div class="">
<div class="flex justify-center">
<img class="w-16 rounded" src="assets/ICONS/twitch.png" alt="" srcset="">
</div>
<div class="flex justify-center text-4xl font-bold" id="hb"></div>
<div class="flex justify-center text-xl py-8"><h1><b>Twitch streamers</b> <br> use our plateform</h1></div>
</div>
<div class="">
<div class="flex justify-center">
<img class="w-16 rounded" src="assets/ICONS/playstation-logotype.png" alt="" srcset="">
</div>
<div class="flex justify-center text-4xl font-bold" id="hc"></div>
<div class="flex justify-center text-xl py-8"><h1><b>New Sony ® PS5 Available</b></h1></div>
</div>
<div class="">
<div class="flex justify-center">
<img class="w-16 rounded" src="assets/ICONS/shoPp.png" alt="" srcset="">
</div>
<div class="flex justify-center text-4xl font-bold" id="hd"></div>
<div class="flex justify-center text-xl py-8"><h1><b>Stores</b> <br> in 5 cities.</h1></div>
</div>
<div class="">
<div class="flex justify-center">
<img class="w-16 rounded" src="assets/ICONS/TOURNAMENT.png" alt="" srcset="">
</div>
<div class="flex justify-center text-4xl font-bold" id="he"></div>
<div class="flex justify-center text-xl py-8"><h1><b>Worldwide Tournaments</b> <br> powered by our plateform.</h1></div>
</div>
</div>
<!-- icons icons icons icons icons -->
<script src="https://cdn.jsdelivr.net/npm/animejs@3.0.1/lib/anime.min.js"></script>
<script type="text/javascript">
var el = document.querySelector('#ha #hb #hc #hd #he');
let animation=anime({
targets: ['#ha', '#hb', '#hc', '#hd','#he'],
translateY: 25
});
document.querySelector('#ha').addEventListener('mouseover', () => {animation.play();})
document.querySelector('#hb').addEventListener('mouseover', () => {animation.play();})
document.querySelector('#hc').addEventListener('mouseover', () => {animation.play();})
document.querySelector('#hd').addEventListener('mouseover', () => {animation.play();})
document.querySelector('#he').addEventListener('mouseover', () => {animation.play();})
</script>
<script>
var roundLogEl = document.querySelector('#ha');
let elias=anime({
targets: roundLogEl,
innerHTML: [0, 1400],
easing: 'linear',
round: 10 // Will round the animated value to 1 decimal
});
document.querySelector('#ha').addEventListener('mouseover', () => {elias.play();})
document.querySelector('#hb').addEventListener('mouseover', () => {elias.play();})
document.querySelector('#hc').addEventListener('mouseover', () => {elias.play();})
document.querySelector('#hd').addEventListener('mouseover', () => {elias.play();})
document.querySelector('#he').addEventListener('mouseover', () => {elias.play();})
</script>
<!-- hb hb hb hb hb hb hb hb hb -->
<script>
var roundLogEl = document.querySelector('#hb');
let oussama=anime({
targets: roundLogEl,
innerHTML: [0, 80],
easing: 'linear',
round: 1 // Will round the animated value to 1 decimal
});
document.querySelector('#ha').addEventListener('mouseover', () => {oussama.play();})
document.querySelector('#hb').addEventListener('mouseover', () => {oussama.play();})
document.querySelector('#hc').addEventListener('mouseover', () => {oussama.play();})
document.querySelector('#hd').addEventListener('mouseover', () => {oussama.play();})
document.querySelector('#he').addEventListener('mouseover', () => {oussama.play();})
</script>
<!-- hc hc hc hc hc hc hc hc hc -->
<script>
var roundLogEl = document.querySelector('#hc');
let machrouh=anime({
targets: roundLogEl,
innerHTML: [0, 1000],
easing: 'linear',
round: 1 // Will round the animated value to 1 decimal
});
document.querySelector('#ha').addEventListener('mouseover', () => {machrouh.play();})
document.querySelector('#hb').addEventListener('mouseover', () => {machrouh.play();})
document.querySelector('#hc').addEventListener('mouseover', () => {machrouh.play();})
document.querySelector('#hd').addEventListener('mouseover', () => {machrouh.play();})
document.querySelector('#he').addEventListener('mouseover', () => {machrouh.play();})
</script>
<!-- hd hd hd hd hd hd hd hd hd hd -->
<script>
var roundLogEl = document.querySelector('#hd');
let rachid=anime({
targets: roundLogEl,
innerHTML: [0, 28],
easing: 'linear',
round: 1 // Will round the animated value to 1 decimal
});
document.querySelector('#ha').addEventListener('mouseover', () => {rachid.play();})
document.querySelector('#hb').addEventListener('mouseover', () => {rachid.play();})
document.querySelector('#hc').addEventListener('mouseover', () => {rachid.play();})
document.querySelector('#hd').addEventListener('mouseover', () => {rachid.play();})
document.querySelector('#he').addEventListener('mouseover', () => {rachid.play();})
</script>
<!-- he he he he he he he he -->
<script>
var roundLogEl = document.querySelector('#he');
let badr=anime({
targets: roundLogEl,
innerHTML: [0, 15],
easing: 'linear',
round: 1 // Will round the animated value to 1 decimal
});
document.querySelector('#ha').addEventListener('mouseover', () => {badr.play();})
document.querySelector('#hb').addEventListener('mouseover', () => {badr.play();})
document.querySelector('#hc').addEventListener('mouseover', () => {badr.play();})
document.querySelector('#hd').addEventListener('mouseover', () => {badr.play();})
document.querySelector('#he').addEventListener('mouseover', () => {badr.play();})
</script>
</section>
<!-- Companies we worked with -->
<section class="fade-in-section py-6 text-gray-400 bg-black body-font">
<div class="text-center">
<img src="" alt="">
<h1 class="mb-4 text-2xl font-medium text-white sm:text-3xl title-font">Companies we worked with</h1>
<p class="mx-auto text-base leading-relaxed text-gray-400 xl:w-2/4 lg:w-3/4 text-opacity-80">More than 15 local and international companies.</p>
<div class="flex justify-center mt-6">
<div class="inline-flex w-16 h-1 bg-pink-500 rounded-full"></div>
</div>
</div>
<div class="flex justify-center">
<img src="assets/hero/companies-banner.png" style="width: 70%;height: auto;" alt="">
</div>
</section>
<script type="text/javascript">
$(document).on("scroll", function() {
var pageTop = $(document).scrollTop();
var pageBottom = pageTop + $(window).height();
var tags = $(".tag");
for (var i = 0; i < tags.length; i++) {
var tag = tags[i];
if ($(tag).position().top < pageBottom) {
$(tag).addClass("visible");
} else {
$(tag).removeClass("visible");
}
}
});
</script>
<div style="height: auto;"></div>
<!-- Footer -->
<footer class="text-gray-400 bg-black body-font">
<div class="container flex flex-col items-center px-5 py-8 mx-auto sm:flex-row">
<a class="flex items-center justify-center font-medium text-white title-font md:justify-start">
<img src="assets/logo.svg" alt="GG" srcset="" class="w-10 h-10">
<span class="ml-3 text-xl">GGS4ALL</span>
</a>
<p class="mt-4 text-sm text-gray-400 sm:ml-4 sm:pl-4 sm:border-l-2 sm:border-gray-800 sm:py-2 sm:mt-0">© 2021 EIDIA —
<!-- <a href="https://twitter.com/knyttneve" class="ml-1 text-gray-500" target="_blank" rel="noopener noreferrer">@knyttneve</a> -->
</p>
<span class="inline-flex justify-center mt-4 sm:ml-auto sm:mt-0 sm:justify-start">
<a class="text-gray-400">
<svg fill="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="w-5 h-5" viewBox="0 0 24 24">
<path d="M18 2h-3a5 5 0 00-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 011-1h3z"></path>
</svg>
</a>
<a class="ml-3 text-gray-400">
<svg fill="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="w-5 h-5" viewBox="0 0 24 24">
<path d="M23 3a10.9 10.9 0 01-3.14 1.53 4.48 4.48 0 00-7.86 3v1A10.66 10.66 0 013 4s-4 9 5 13a11.64 11.64 0 01-7 2c9 5 20 0 20-11.5a4.5 4.5 0 00-.08-.83A7.72 7.72 0 0023 3z"></path>
</svg>
</a>
<a class="ml-3 text-gray-400">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="w-5 h-5" viewBox="0 0 24 24">
<rect width="20" height="20" x="2" y="2" rx="5" ry="5"></rect>
<path d="M16 11.37A4 4 0 1112.63 8 4 4 0 0116 11.37zm1.5-4.87h.01"></path>
</svg>
</a>
<a class="ml-3 text-gray-400">
<svg fill="currentColor" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="0" class="w-5 h-5" viewBox="0 0 24 24">
<path stroke="none" d="M16 8a6 6 0 016 6v7h-4v-7a2 2 0 00-2-2 2 2 0 00-2 2v7h-4v-7a6 6 0 016-6zM2 9h4v12H2z"></path>
<circle cx="4" cy="4" r="2" stroke="none"></circle>
</svg>
</a>
</span>
</div>
</footer>
<!-- hady gheer myk 3liha rah makadir walo -->
</body>
</html>