-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
97 lines (97 loc) · 2.95 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
<!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" />
<meta
property="og:image"
content="https://dzzanis.github.io/cup-calendar/assets/favicon.png"
/>
<meta
property="og:image:secure_url"
content="https://dzzanis.github.io/cup-calendar/assets/favicon.png"
/>
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="512" />
<meta property="og:image:height" content="512" />
<meta property="og:url" content="https://github.com/dzzanis/cup-calendar" />
<meta property="og:type" content="sport" />
<meta property="og:title" content="Calendário de Jogos" />
<meta
property="og:description"
content="Calendário de Jogos da Copa do Mundo"
/>
<meta
name="google-site-verification"
content="nz4jLbtd2fSOYZ9YlJYIxRKNXSvqqmF5zpqF1fyHS6c"
/>
<link rel="stylesheet" href="./style.css" />
<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=DM+Sans:wght@400;700&family=Inter:wght@400;900&family=Roboto:wght@700;900&display=swap"
rel="stylesheet"
/>
<link rel="shortcut icon" href="assets/favicon.png" type="image/x-icon" />
<title>Calendário de Jogos</title>
</head>
<body>
<div id="app">
<header>
<img src="./assets/logo.svg" alt="Logo da NLW - Nexte Level Week" />
</header>
<nav class="menuFilter">
<ul>
<li>
<a id="allGamesMenu" href="#" onclick="allGames()"
>Todos os jogos</a
>
</li>
<li>
<a id="brazilGamesMenu" href="#" onclick="brasilGames()"
>Jogos do Brasil</a
>
</li>
<li>
<a id="todaysGamesMenu" href="#">Jogos hoje</a>
</li>
</ul>
</nav>
<main>
<div id="cards"></div>
</main>
<footer>
<a href="https://www.linkedin.com/in/diogo-zanis-51539a121"
>2022 - Feito com ♥ by Diogo Zanis</a
>
</footer>
</div>
<a id="backToTopButton" href="#app">
<svg
width="40"
height="40"
viewBox="0 0 40 40"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<circle cx="20" cy="20" r="20" fill="#00856F" />
<path
d="M20 27V13"
stroke="white"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M13 20L20 13L27 20"
stroke="white"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
</a>
<script src="./main.js"></script>
</body>
</html>