-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
671 lines (635 loc) · 22.4 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
<!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" />
<!--========== HTML META TAGS ===========-->
<title>Playstation</title>
<meta
name="description"
content="Responsive Website PlayStation by Kennedy B."
/>
<meta name="author" content="Kennedy Barros" />
<!--========== Open Graph / Facebook ===========-->
<meta
property="og:url"
content="https://repsonsive-website-playstation.netlify.app/"
/>
<meta property="og:type" content="website" />
<meta property="og:title" content="Responsive Website PlayStation" />
<meta
property="og:description"
content="Responsive Website PlayStation by Kennedy B."
/>
<meta property="og:image" content="https://i.ibb.co/qCvjdFd/cover.png" />
<!--========== CANONICAL ===========-->
<meta
property="canonical"
content="https://repsonsive-website-playstation.netlify.app/"
/>
<meta property="keywords" content="responsive, website, playstation" />
<meta property="robots" content="responsive, website, playstation" />
<!--=========== TWITTER ===============-->
<meta name="twitter:card" content="summary_large_image" />
<meta
property="twitter:domain"
content="repsonsive-website-playstation.netlify.app"
/>
<meta
property="twitter:url"
content="https://repsonsive-website-playstation.netlify.app/"
/>
<meta name="twitter:title" content="Responsive Website PlayStation" />
<meta
name="twitter:description"
content="Responsive Website PlayStation by Kennedy B."
/>
<meta name="twitter:image" content="https://i.ibb.co/qCvjdFd/cover.png" />
<!--========== FAVICON ===========-->
<link rel="icon" href="./assets/svg/logo.svg" type="image/svg+xml" />
<!--========== GOOGLE FONTS ===========-->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&family=Roboto:wght@400;500&display=swap"
rel="stylesheet"
/>
<!--========== BOX ICONS ===========-->
<link
href="https://unpkg.com/[email protected]/css/boxicons.min.css"
rel="stylesheet"
/>
<!--========== CSS ===========-->
<link rel="preload" href="./assets/css/style.min.css" as="style" />
<link rel="stylesheet" href="./assets/css/style.min.css" />
</head>
<body>
<!--========== HEADER ===========-->
<header class="header" id="header">
<nav class="nav container">
<div class="nav_box">
<a href="./index.html" class="nav_logo">
<img
src="./assets/svg/logo.svg"
width="44"
height="41"
alt="PlayStation Logo"
/>
PlayStation
</a>
</div>
<div class="nav_menu" id="nav-menu">
<ul class="nav_list">
<li class="nav_item">
<a href="#home" class="nav_link">Home</a>
</li>
<li class="nav_item">
<a href="./assets/html/controllers.html" class="nav_link"
>About</a
>
</li>
<li class="nav_item">
<a href="./assets/html/produts.html" class="nav_link">Products</a>
</li>
<li class="nav_item">
<a href="#faqs" class="nav_link">FAQs</a>
</li>
<li class="nav_item">
<a href="./assets/html/contact.html" class="nav_link">Contact</a>
</li>
</ul>
<div class="nav_close" id="nav-close">
<i class="bx bx-x"></i>
</div>
</div>
<div class="nav_btns">
<i class="bx bx-moon change-theme" id="theme-button"></i>
<div class="nav_toggle" id="nav-toggle">
<i class="bx bx-menu"></i>
</div>
</div>
</nav>
</header>
<!--========== PRELOADER ===========-->
<section class="screen_loading flex_center flex_column">
<img
class="loading_logo"
src="./assets/svg/logo.svg"
width="44"
height="41"
alt="Logo PlaySation"
/>
<div class="loading"></div>
</section>
<!--========== MAIN ===========-->
<main class="main">
<!--========== HOME ===========-->
<section class="home" id="home">
<div class="home_container bd-container bd-grid">
<div class="home_data">
<h1 class="home_title">
PlayStation <br />
<span class="home_title-secondary">Controller</span>
</h1>
<p class="home_subtitle">
This is a Hyper Ergonimic PLAYSTATION Controller Concept Makes
Gaming Far More Comfortable
</p>
<div class="home_buttons">
<a
href="./assets/html/controllers.html#ps4_controller"
class="button"
>About More</a
>
<a href="./assets/html/produts.html" class="button_secondary"
>Explore Produts
<i class="bx bx-right-arrow-alt button_icon"></i
></a>
</div>
<div class="home_company">
<img
src="./assets/svg/home/sony.svg"
width="70"
height="18"
alt="Sony Logo"
/>
<img
src="./assets/svg/home/sony.svg"
width="70"
height="18"
alt="Sony Logo"
/>
<img
src="./assets/svg/home/sony.svg"
width="70"
height="18"
alt="Sony Logo"
/>
<img
src="./assets/svg/home/sony.svg"
width="70"
height="18"
alt="Sony Logo"
/>
</div>
</div>
<img
src="./assets/img/home/controller.webp"
alt="Controller PlayStation"
class="home_img"
/>
</div>
</section>
<!--========== ABOUT ===========-->
<section>
<div class="about_container bd-container bd-grid">
<img
class="about_img"
src="./assets/img/home/controller2.webp"
width="413"
height="524"
alt="Controllers PlayStation"
/>
<div class="about_data">
<h1 class="about_title">
Made with <span class="about_title-secondary">quality</span>
</h1>
<p class="about_subtitle">
Your PlayStation controler isn't just limited to your console,
with integrated Bluetooth supporting iOS, Android, and PCs. We
recommend picking up a phone clip, though.
</p>
<ul class="about_list">
<li>Great. familiar in-hand feel</li>
<li>Works with PlayStation, iOS, Android, PC</li>
<li>Supports PlayStation controller clips</li>
<li>Easy to use for any enviromment</li>
</ul>
<a href="./assets/html/buy.html" class="button"
>Shop Now <i class="bx bx-right-arrow-alt about_icon"></i
></a>
</div>
</div>
</section>
<!--========== FUNCTIONS ===========-->
<section class="functions_container bd-container bd-grid">
<div class="functions_data">
<h1 class="functions_title">
Our <span class="functions_title-secondary">Functions</span>
</h1>
<p class="functions_subtitle">
PlayStation Elite Wireless Controller Series 2
</p>
<div class="functions_list-container">
<div class="functions_list">
<i class="bx bx-rocket functions_icons"></i>
<span class="functions_icons-title">Velocity</span>
<img
class="functions_img"
src="./assets/img/decoration/description_controller.webp"
width="106"
height="35"
alt="Progress Bar"
/>
</div>
<div class="functions_list">
<i class="bx bxs-battery-charging functions_icons"></i>
<span class="functions_icons-title">Durable</span>
<img
class="functions_img"
src="./assets/img/decoration/description_controller.webp"
width="106"
height="35"
alt="Progress Bar"
/>
</div>
<div class="functions_list">
<i class="bx bx-bluetooth functions_icons"></i>
<span class="functions_icons-title">Bluetooth</span>
<img
class="functions_img"
src="./assets/img/decoration/description_controller.webp"
width="106"
height="35"
alt="Progress Bar"
/>
</div>
</div>
</div>
</section>
<!--========== PRODUTS ===========-->
<section class="produts_container bd-container bd-grid">
<div class="produts_data">
<h1 class="produts_title">
Top controller <span class="produts_title-2">Now</span>
</h1>
<p class="produts_subtitle">
PlayStation Elite Wireless Controller Series 2
</p>
<div class="produts_list-container">
<div class="produts_list">
<div class="product_circle"></div>
<img
class="produts_img"
src="./assets/img/home/joystick.webp"
width="230"
height="238"
alt="Joystick"
/>
<h2 class="produts_list-title">PS4 Controller</h2>
<div class="produts_evaluation">
<img
src="./assets/img/decoration/star.webp"
width="20"
height="20"
alt="Star"
/>
<img
src="./assets/img/decoration/star.webp"
width="20"
height="20"
alt="Star"
/>
<img
src="./assets/img/decoration/star.webp"
width="20"
height="20"
alt="Star"
/>
<img
src="./assets/img/decoration/star.webp"
width="20"
height="20"
alt="Star"
/>
<span class="produts_evaluation-title">(11)</span>
</div>
<span class="produts_value">R$ 300</span>
<div class="produts_buy">
<img
class="produts_buy-img"
src="./assets/svg/decoration/rectangle_secondary.svg"
width="64"
height="62"
alt="Recatangle"
/>
<a class="produts_button" href="./assets/html/produts.html">
<i class="bx bx-plus"></i
></a>
</div>
</div>
<div class="produts_list ps5_list">
<div class="product_circle"></div>
<img
class="produts_img joystick_2"
src="./assets/img/home/joystick_3.webp"
width="201"
height="154"
alt="Joystick"
/>
<h2 class="produts_list-title">PS5 Controller</h2>
<div class="produts_evaluation">
<img
src="./assets/img/decoration/star.webp"
width="20"
height="20"
alt="Star"
/>
<img
src="./assets/img/decoration/star.webp"
width="20"
height="20"
alt="Star"
/>
<img
src="./assets/img/decoration/star.webp"
width="20"
height="20"
alt="Star"
/>
<img
src="./assets/img/decoration/star.webp"
width="20"
height="20"
alt="Star"
/>
<img
src="./assets/img/decoration/star.webp"
width="20"
height="20"
alt="Star"
/>
<span class="produts_evaluation-title">(41)</span>
</div>
<span class="produts_value">R$ 200</span>
<div class="produts_buy">
<img
class="produts_buy-img"
src="./assets/svg/decoration/rectangle_secondary.svg"
width="64"
height="62"
alt="Recatangle"
/>
<a class="produts_button" href="./assets/html/produts.html#ps5">
<i class="bx bx-plus"></i
></a>
</div>
</div>
<div class="produts_list">
<div class="product_circle"></div>
<img
class="produts_img joystick_3"
src="./assets/img/home/joystick_2.webp"
width="236"
height="186"
alt="Joystick"
/>
<h2 class="produts_list-title">Squid Controller</h2>
<div class="produts_evaluation">
<img
src="./assets/img/decoration/star.webp"
width="20"
height="20"
alt="Star"
/>
<img
src="./assets/img/decoration/star.webp"
width="20"
height="20"
alt="Star"
/>
<span class="produts_evaluation-title">(1)</span>
</div>
<span class="produts_value">R$ 100</span>
<div class="produts_buy">
<img
class="produts_buy-img"
src="./assets/svg/decoration/rectangle_secondary.svg"
width="64"
height="62"
alt="Recatangle"
/>
<a
class="produts_button"
href="./assets/html/produts.html#squid"
>
<i class="bx bx-plus"></i
></a>
</div>
</div>
</div>
</div>
</section>
<!--========== FAQS ===========-->
<section class="faqs section" id="faqs">
<p class="faqs_title-center faqs_subtitle container">
SECURELY BUY AND TRACK
</p>
<h2 class="faqs_title-center faqs_title container">
Frequenly Asked <span class="faqs_title-secondary">Question</span>
</h2>
<p class="faqs_title-center faqs_subtitle-secondary container">
We know you have some questions in mind, we have tried <br />
to list the most important ones.
</p>
<div class="faqs_container container grid">
<div class="faqs_group">
<div class="faqs_item">
<header class="faqs_header">
<h3 class="faqs_item-title">
What form of payment do you accept?
</h3>
<i class="bx bx-plus faqs_icon"></i>
</header>
<div class="faqs_content">
<p class="faqs_description">
We accept installment payments on all credit cards. For cash
payments we also accept PIX and Boleto through PagSeguro.
</p>
</div>
</div>
<div class="faqs_item">
<header class="faqs_header">
<h3 class="faqs_item-title">How can I get in touch?</h3>
<i class="bx bx-plus faqs_icon"></i>
</header>
<div class="faqs_content">
<p class="faqs_description">
We accept installment payments on all credit cards. For cash
payments we also accept PIX and Boleto through PagSeguro.
</p>
</div>
</div>
<div class="faqs_item">
<header class="faqs_header">
<h3 class="faqs_item-title">Do you have any discounts?</h3>
<i class="bx bx-plus faqs_icon"></i>
</header>
<div class="faqs_content">
<p class="faqs_description">
We accept installment payments on all credit cards. For cash
payments we also accept PIX and Boleto through PagSeguro.
</p>
</div>
</div>
<div class="faqs_item">
<header class="faqs_header">
<h3 class="faqs_item-title">What guarantee do I have?</h3>
<i class="bx bx-plus faqs_icon"></i>
</header>
<div class="faqs_content">
<p class="faqs_description">
We accept installment payments on all credit cards. For cash
payments we also accept PIX and Boleto through PagSeguro.
</p>
</div>
</div>
<div class="faqs_item">
<header class="faqs_header faqs_detail">
<h3 class="faqs_item-title">Can I pay in installments?</h3>
<i class="bx bx-plus faqs_icon"></i>
</header>
<div class="faqs_content">
<p class="faqs_description faqs_detail-secondary">
We accept installment payments on all credit cards. For cash
payments we also accept PIX and Boleto through PagSeguro.
</p>
</div>
</div>
</div>
</div>
</section>
</main>
<!--========== FOOTER ===========-->
<hr class="hr_footer" />
<footer class="footer section">
<div class="footer_container container grid">
<div class="footer_content">
<a href="#" class="footer_logo">
<img
src="assets/svg/logo.svg"
alt="Logo PlayStation"
width="44"
height="41"
class="footer_logo-img"
/>
PlayStation
</a>
<p class="footer_description">
Welcome to PlayStation Plus. Enhance your <br />
PlayStation experience with online multiplayer, <br />
monthly games, exclusive discounts and more.
</p>
<div class="footer_social">
<a
href="https://github.com/kennedybarros/"
target="_blank"
class="footer_social-link"
>
<i class="bx bxl-github"></i>
</a>
<a
href="https://www.instagram.com/k3nnedybarros/"
target="_blank"
class="footer_social-link"
>
<i class="bx bxl-instagram"></i>
</a>
<a
href="https://www.linkedin.com/in/kennedybarros/"
target="_blank"
class="footer_social-link"
>
<i class="bx bxl-linkedin"></i>
</a>
</div>
</div>
<div class="footer_content">
<h3 class="footer_title">Services</h3>
<ul class="footer_links">
<li>
<a href="./assets/html/produts.html" class="footer_link"
>Produts</a
>
</li>
</ul>
</div>
<div class="footer_content">
<h3 class="footer_title">Company</h3>
<ul class="footer_links">
<li>
<a href="./index.html" class="footer_link">Home</a>
</li>
<li>
<a href="./assets/html/controllers.html" class="footer_link"
>About</a
>
</li>
<li>
<a href="./index.html#faqs" class="footer_link">FAQs</a>
</li>
</ul>
</div>
<div class="footer_content">
<h3 class="footer_title">Suport</h3>
<ul class="footer_links">
<li>
<a href="./assets/html/terms.html" class="footer_link"
>Terms of Service</a
>
</li>
<li>
<a href="./assets/html/privacy.html" class="footer_link"
>Privacy Policy</a
>
</li>
<li>
<a href="./assets/html/contact.html" class="footer_link"
>Contact Us</a
>
</li>
</ul>
</div>
</div>
<hr class="hr_footer-secondary" />
<span class="footer_copy"
>Copyright 2022 Playstation - All Rights Rleserved</span
>
</footer>
<!--========== SCROLL UP ===========-->
<a href="#" class="scrollup" id="scroll-up">
<i class="bx bx-up-arrow-alt scrollup_icon"></i>
</a>
<!--========== SCROLLREVEAL ===========-->
<script src="https://unpkg.com/scrollreveal"></script>
<!--========== GSAP ===========-->
<script
src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.6.1/gsap.min.js"
integrity="sha512-cdV6j5t5o24hkSciVrb8Ki6FveC2SgwGfLE31+ZQRHAeSRxYhAQskLkq3dLm8ZcWe1N3vBOEYmmbhzf7NTtFFQ=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.6.1/ScrollTrigger.min.js"
integrity="sha512-Q+G390ZU2qKo+e4q+kVcJknwfGjKJOdyu5mVMcR95NqL6XaF4lY4nsSvIVB3NDP54ACsS9rqhE1DVqgpApl//Q=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
></script>
<script>
gsap.registerPlugin(ScrollTrigger);
document.addEventListener('DOMContentLoaded', () => {
// PRELOADER
var tl1 = gsap.timeline();
tl1.to('.screen_loading', {
duration: 1,
opacity: 0,
delay: 3,
ease: 'power4.out',
});
});
</script>
<!--========== JAVASCRIPT ===========-->
<script src="./assets/js/main.js"></script>
</body>
</html>