-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (50 loc) · 2.24 KB
/
Copy pathindex.html
File metadata and controls
50 lines (50 loc) · 2.24 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
<!doctype html>
<html lang="pt-br">
<head>
<title>Central</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="css/main-style.css">
<link rel="stylesheet" type="text/css" href="css/normalize.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="autor do site">
<meta name="keywords" content="palavras-separadas,por,virgula">
<meta name="description" content="descrição do site">
<link rel="icon" type="image/png" href="logo/icon.png"/>
</head>
<body>
<header>
<div class="container">
<a href="#"><img src="logo/tiger.png" class="tigerLogo" alt="tiger-logo"></a>
<nav class="navbar">
<ul>
<a href="#"><li class="atualPage">Home</li></a>
<a onclick="verificaLogin()" id="contaOuLog" class=""><li id="contaPage">Entrar</li></a>
<a class="carrinho" href="carrinho.html"><li style="font-size: 14px;">Carrinho</li></a>
</ul>
</nav><!--navbar-->
</div><!-- container-->
</header>
<div class="central"><img src="logo/Central2.png" alt=""></div>
<section>
<div class="container">
<div id="GameList">
<!-- ### -->
</div><!--GameList-->
</div><!--container-->
</section>
<!-- Script GameList -->
<script src="script/GameList.js"></script>
<!-- Script Geral -->
<script src="script/script.js"></script>
<!-- Script Card -->
<script src="script/card.js"></script>
<script type="text/javascript">
VanillaTilt.init(document.querySelector(".cardxyz"), {
max: 15, speed: 10000, glare: true, 'max-glare': 0.6});
VanillaTilt.init(document.querySelectorAll(".cardxyz"), {
max: 15, speed: 10000, glare: true, 'max-glare': 0.6});
VanillaTilt.init(document.querySelector(".cardDestaque"), {
max: 5, speed: 10000, glare: true, 'max-glare': 0.4});
</script>
</body>
</html>