-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
385 lines (363 loc) · 15.6 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
<!DOCTYPE html>
<html lang="pt-br">
<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">
<!--css padrão-->
<link rel="stylesheet" type="text/css" href="assets/css/styles.css">
<!--responsividade-->
<link rel="stylesheet" href="assets/css/responsive.css">
<!--icone playstation-->
<link rel="shortcut icon" type="imagex/png" href="assets/imagens/playstation-icon.png">
<!--owl css-->
<link rel="stylesheet" href="assets/css/owl/owl.carousel.min.css">
<link rel="stylesheet" href="assets/css/owl/owl.theme.default.min.css">
<!--título da página-->
<title>PlayStation | Clone</title>
</head>
<body>
<header>
<section class="sonybar">
<a class = "sony" href="https://www.sony.com/en/">
<img src="assets/imagens/sony-logo.png" width="75" height="18">
</a>
</section>
<section class="navbar">
<div class = "container">
<a class = "playstation-logo" href="#">
<img src="assets/imagens/playstation-blue-logo.png" width="50" height="35">
</a>
<nav>
<a href="#conteudo-ps5">PlayStation 5</a>
<a href="#jogos">PS Store</a>
<a href="#conteudo-ps4">PlayStation 4</a>
<a href="#ps-plus">PS Plus</a>
<a href="#promocoes">Promoções</a>
</nav>
</div>
<a href="https://my.account.sony.com/central/signin/?duid=0000000700090100e1485cc035469665938c95e4eeba8dd8a12ce2a5c1ef64c1edc5410a5ce59e8e&response_type=code&client_id=e4a62faf-4b87-4fea-8565-caaabb3ac918&scope=web%3Acore&access_type=offline&state=1c06d3d274d73cf3e9a6ee456fcac226e00d2ad65c1035bcd7fce864532d2454&service_entity=urn%3Aservice-entity%3Apsn&ui=pr&smcid=web%3Astore&redirect_uri=https%3A%2F%2Fweb.np.playstation.com%2Fapi%2Fsession%2Fv1%2Fsession%3Fredirect_uri%3Dhttps%253A%252F%252Fstore.playstation.com%252Fpt-br%252Fpages%252Flatest%26x-psn-app-ver%3D%2540sie-ppr-web-session%252Fsession%252Fv5.13.1&auth_ver=v3&error=login_required&error_code=4165&error_description=User+is+not+authenticated&no_captcha=false&cid=9d457058-c01c-4082-a445-31c54631e6cd#/signin/ca?entry=ca">
<button class="botao-preto"><b>Iniciar sessão</b></button>
</a>
</section>
</header>
<main>
<div class="jogo-principal">
<div class="container">
<img class="jogo-logo" src="assets/imagens/horizonfw-logo.webp" width="380" height="160">
<h3 class="subtitulo-principal">
Disponível em 18 de fevereiro de 2022</h3>
<p class="descricao-principal">
Junte-se a Aloy e explore a Forbidden West, uma fronteira repleta de encantos e perigos que esconde ameaças novas e misteriosas.</p>
<div class="botoes">
<a href="https://www.playstation.com/pt-br/games/horizon-forbidden-west/">
<button role="button" class="botao-laranja">
<b>Já em pré-venda</b>
</button>
</a>
<a href="https://blog.br.playstation.com/2022/01/19/guerrilla-traz-uma-previa-da-jornada-epica-da-aloy-rumo-ao-oeste-proibido/" target="_blank">
<button role="button" class="botao-branco">
<b>Saiba mais</b>
</button>
</a>
</div>
</div>
</div>
</main>
<main id="conteudo-ps5">
<section class="ps-primario">
<h4>
JOGAR NÃO TEM LIMITES
</h4>
<h1>
Apresentamos o PlayStation 5
</h1>
<p>
Libere novas possibilidades de jogos que você nunca imaginou
</p>
</section>
<section class="ps-secundario">
<div>
<h4>
Console PlayStation 5
</h4>
<p>
Descubra uma nova geração de jogos incríveis de PlayStation.
</p>
<a href="https://www.playstation.com/pt-br/ps5/">
<button role="button" class="botao-azul">
<b>Saiba mais</b>
</button>
</a>
</div>
<img src="assets/imagens/ps5-png.png" width="460" height="400" alt="Imagem do PlayStation 5 e o DualSense">
</section>
</main>
<main id="jogos">
<section class="jogos-playstation">
<img class="ps-store" src="assets/imagens/PS Store.png" width="340" height="80">
<h1 class= "jogos-titulo">
JOGUE SEM LIMITES</strong>
</h1>
<p class="jogos-descricao">
Confira o nosso catálogo de jogos mais famosos, presentes no PS4 e no PS5.
</p>
<a href="https://store.playstation.com/pt-br/pages/latest">
<button role="button" class="botao-ps-store">
<b>Explore a PlayStation Store</b>
</button>
</a>
</section>
<section>
<div class="owl-carousel owl-theme">
<div class="item">
<a href="https://www.playstation.com/pt-br/games/god-of-war/">
<img class="box-jogos" src="assets/imagens/gow-box.jpg" alt="God of War">
<h4>
God of War
</h4>
<p>
R$ 99,50
</p>
</a>
</div>
<div class="item">
<a href="https://www.playstation.com/pt-br/games/the-last-of-us-part-ii/">
<img class="box-jogos" src="assets/imagens/tlou2-box.jpg" alt="The Last of Us Part II">
<h4>
The Last os Us Part II
</h4>
<p>
R$ 199,50
</p>
</a>
</div>
<div class="item">
<a href="https://www.playstation.com/pt-br/games/marvels-spider-man-miles-morales/">
<img class="box-jogos" src="assets/imagens/sm-mm-box.jpg" alt="Spider-Man: Miles Morales">
<h4>
Spider-Man: Miles Morales
</h4>
<p>
R$ 149,70
</p>
</a>
</div>
<div class="item">
<a href="https://www.playstation.com/pt-br/games/uncharted-legacy-of-thieves-collection/">
<img class="box-jogos" src="assets/imagens/uncharted-box.jpg" alt="Uncharted: Legado dos Ladrões">
<h4>
Uncharted: Legado dos Ladrões
</h4>
<p>
R$ 249,50
</p>
</a>
</div>
<div class="item">
<a href="https://www.playstation.com/pt-br/games/ea-sports-fifa-22/">
<img class="box-jogos" src="assets/imagens/fifa22-box.png" alt="FIFA 22">
<h4>
FIFA 22
</h4>
<p>
R$ 229,00
</p>
</a>
</div>
<div class="item">
<a href="https://www.playstation.com/pt-br/games/nba-2k22/">
<img class="box-jogos" src="assets/imagens/nba2k22-box.jpg" alt="NBA 2K22">
<h4>
NBA 2K22
</h4>
<p>
R$ 115,46
</p>
</a>
</div>
<div class="item">
<a href="https://www.playstation.com/pt-br/games/the-witcher-3-wild-hunt/">
<img class="box-jogos" src="assets/imagens/tw3-box.png" alt="The Witcher 3: Wild Hunt">
<h4>
The Witcher 3: Wild Hunt
</h4>
<p>
R$ 207,90
</p>
</a>
</div>
<div class="item">
<a href="https://www.playstation.com/pt-br/games/assassins-creed-valhalla/">
<img class="box-jogos" src="assets/imagens/ac-valhalla-box.png" alt="Assassins Creed Valhalla">
<h4>
Assassin's Creed Valhalla
</h4>
<p>
R$ 279,90
</p>
</a>
</div>
<div class="item">
<a href="https://www.playstation.com/pt-br/games/grand-theft-auto-v/">
<img class="box-jogos" src="assets/imagens/gtav-box.jpg" alt="GTA V">
<h4>
Grand Theft Auto V
</h4>
<p>
R$ 79,95
</p>
</a>
</div>
</div>
</section>
</main>
<main id="conteudo-ps4">
<section class="ps-primario">
<h1>
Explore o PlayStation 4 Pro
</h1>
<p>
Jogos incríveis e diversão sem parar. Nunca houve época melhor para se divertir com o PS4.
</p>
</section>
<section class="ps-secundario">
<img src="assets/imagens/ps4-pro.png" width="420" height="380" alt="Imagem do PlayStation 5 e o DualSense">
<div>
<h4>
Console PlayStation 4 Pro
</h4>
<p>
Os jogos mais incríveis estão no PS4, com 1TB de armazenamento.
</p>
<a href="https://www.playstation.com/pt-br/ps4/ps4-pro/">
<button role="button" class="botao-azul">
<b>Saiba mais</b>
</button>
</a>
</div>
</section>
</main>
<main id="ps-plus">
<section class="anuncio-psplus">
<div>
<img class="psplus-logo" src="assets/imagens/ps-plus.png" width="390" height="105">
<p class="ps-plus-descricao">
Melhore sua experiência PlayStation com o modo multijogador online, jogos mensais, descontos exclusivos e muito mais.
</p>
<a href="https://www.playstation.com/pt-br/ps-plus/">
<button class="botao-plus">
<b>Explore o PlayStation Plus</b>
</button>
</a>
</div>
<img src="assets/imagens/psplus-montly-games.png" width="750" height="550" alt="Jogos de Janeiro/2022 na PS Plus">
</section>
</main>
<main id="promocoes">
<section class="anuncio-promocao">
<h1 class="titulo-promocao">
Novas promoções na PlayStation Store
</h1>
<p class="descricao-promocao">
Descontos incríveis, curadoria de coletâneas e promoções sazonais para PS5, PS4 e PS VR, tudo em um só lugar.
</p>
</section>
<section class="opcoes-promocao">
<div>
<a href="https://store.playstation.com/category/fcbd086e-70ff-40a1-8829-26d894abe9f3?emcid=ot-pl-430836">
<img class="img-promocao" src="assets/imagens/escolha-dos-criticos.jpg" width="400" height="400" alt="Escolha dos Críticos">
</a>
</div>
<div>
<a href="https://store.playstation.com/deals">
<img class="img-promocao" src="assets/imagens/pechinchas.jpg" width="400" height="400" alt="Pechinchas">
</a>
</div>
<div>
<a href="https://store.playstation.com/category/30749d2c-738f-4c36-9d6b-7ed517cca9ee/1">
<img class="img-promocao" src="assets/imagens/free-to-play.jpg" width="400" height="400" alt="Grátis para Jogar">
</a>
</div>
</section>
<section>
<h1 class="titulo-redes-sociais">
Siga-nos nas redes sociais
</h1>
</section>
<section class="redes-sociais-playstation">
<div>
<a href="https://twitter.com/PlayStation" target="_blank">
<img src="assets/imagens/twitter-logo.png" width="120" height="120" alt="Twitter do PlayStation">
</a>
</div>
<div>
<a href="https://pt-br.facebook.com/PlayStationBR/" target="_blank">
<img src="assets/imagens/facebook-logo.png" width="120" height="120" alt="Facebook do PlayStation">
</a>
</div>
<div>
<a href="https://www.instagram.com/playstation/" target="_blank">
<img src="assets/imagens/instagram-logo.png" width="120" height="120" alt="Instagram do PlayStation">
</a>
</div>
<div>
<a href="https://www.youtube.com/playstation/" target="_blank">
<img src="assets/imagens/youtube-logo.png" width="120" height="120" alt="YouTube do PlayStation">
</a>
</div>
</section>
</main>
<footer>
<section class="rodape-primario">
<p>
© Digital Innovation One.
</p>
<p>
Lucas Teixeira © 2022
</p>
</section>
<section class="rodape-secundario">
<div class="rodape-item">
<a href="https://github.com/LucasTMB" target="_blank">
<i class="fab fa-github"></i>
<p>
<b>Github</b>
</p>
</a>
</div>
<div class="rodape-item">
<a href="https://www.linkedin.com/in/lucastmbarros/" target="_blank">
<i class="fab fa-linkedin"></i>
<p>
<b>LinkedIn</b>
</p>
</a>
</div>
<div class="rodape-item">
<a href="https://www.instagram.com/lucas.tmb/" target="_blank">
<i class="fab fa-instagram"></i>
<p>
<b>Instagram</b>
</p>
</a>
</div>
<div class="rodape-item">
<a href="mailto:lucastmbarros@fac.pe.senac.br" target="_blank">
<i class="fas fa-envelope"></i>
<p>
<b>Gmail</b>
</p>
</a>
</div>
</section>
</footer>
<!--font awesome-->
<script src="https://kit.fontawesome.com/47b49fff3c.js" crossorigin="anonymous"></script>
<!--owl javascript-->
<script src="assets/js/owl/jquery.min.js"></script>
<script src="assets/js/owl/owl.carousel.min.js"></script>
<!--javascript principal-->
<script src="assets/js/scripts.js"></script>
</body>
</html>