-
Notifications
You must be signed in to change notification settings - Fork 2
/
fase-de-grupos.html
80 lines (76 loc) · 2.52 KB
/
fase-de-grupos.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
<!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" />
<title>Calendário de Jogos - Copa 2022</title>
<meta name="title" content="Calendário de Jogos - Copa 2022" />
<meta
name="description"
content="Fique por dentro dos jogos da Copa do Mundo 2022! Aqui você pode conferir os horários de todos os jogos e compartilhar com os amigos!"
/>
<!-- links (css, fontes) -->
<link rel="stylesheet" href="./style.css" />
<link
rel="apple-touch-icon"
sizes="180x180"
href="./assets/favicons/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./assets/favicons/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="./assets/favicons/favicon-16x16.png"
/>
<link rel="manifest" href="./assets/favicons/site.webmanifest" />
<meta name="msapplication-TileColor" content="#b91d47" />
<meta name="theme-color" content="#ffffff" />
<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=Roboto:wght@700;900&display=swap"
rel="stylesheet"
/>
</head>
<!-- body -->
<body class="green">
<div id="app">
<header>
<img
src="./assets/copalogo.svg"
alt="Logo da Copa do Mundo 2022"
class="logo-copa"
/>
</header>
<div class="fases">
<button class="botao-selecionado">Fase de Grupos</button>
<a href="oitavas.html"
><button class="botoes-fases">Oitavas de Final</button></a
>
<a href="quartas.html"
><button class="botoes-fases">Quartas de Final</button></a
>
<a href="semi.html"><button class="botoes-fases">Semifinais</button></a>
<a href="final.html"><button class="botoes-fases">Final</button></a>
</div>
<main id="cards"></main>
</div>
<script src="./scripts/main.js"></script>
<script defer src="/_vercel/insights/script.js"></script>
<footer>
<p>
Desenvolvido por
<a href="https://github.com/gabrielovski" target="_blank">Gabriel</a>
durante o evento NLW Copa da
<a href="http://rocketseat.com.br" target="_blank">Rocketseat</a>!
</p>
</footer>
</body>
</html>