-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
124 lines (103 loc) · 4.62 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-B4J01L7V4D"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-B4J01L7V4D');
</script>
<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 name="description" content="Copa do Mundo 2022: Lista os países participantes, jogos com a data e horário de realização, classificação e artilheiros.">
<!-- para o Twitter Card -->
<meta name="twitter:card" value="summary">
<meta name="twitter:site" content="@jeanpesil">
<meta name="twitter:title" content="Copa do Mundo">
<meta name="twitter:description" content="Seleções participantes, Jogos, Resultados, Classificação e Ranking de Artilheiros">
<meta name="twitter:creator" content="@jeanpesil">
<meta name="twitter:image" content="https://copadomundojs.netlify.app/assets/img/copa-card.png">
<meta property="og:image" content="https://copadomundojs.netlify.app/assets/img/copa-card.png">
<title>Copa do Mundo 2022</title>
<link rel="stylesheet" href="./assets/css/style.css">
<link rel="shortcut icon" href="./assets/img/icon.png" type="image/x-icon">
<script src="https://kit.fontawesome.com/9a7e4ca02b.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="container">
<div class="titles">
<div class="logo">
<img src="./assets/img/copa-do-mundo.png" width="40" height="80" alt="troféu copa do mundo">
</div>
<div class="navigation">
<h2 role="button" class="title-countries">Países</h2>
<h2 role="button" class="title-games">Jogos</h2>
<h2 role="button" class="title-classification">Classificação</h2>
<h2 role="button" title="info" class="title-about"><i class="fa-solid fa-circle-info"></i></h2>
</div>
<div class="groups-name">
<h2 role="button" class="btn-group-a">A</h2>
<h2 role="button" class="btn-group-b">B</h2>
<h2 role="button" class="btn-group-c">C</h2>
<h2 role="button" class="btn-group-d">D</h2>
<h2 role="button" class="btn-group-e">E</h2>
<h2 role="button" class="btn-group-f">F</h2>
<h2 role="button" class="btn-group-g">G</h2>
<h2 role="button" class="btn-group-h">H</h2>
</div>
<div class="rounds">
<h2 role="button" class="btn-round-arrow-back"><i class="fa-solid fa-chevron-left"></i></h2>
<h2 role="button" class="btn btn-round1">1ª Rodada</h2>
<h2 role="button" class="btn btn-round2">2ª Rodada</h2>
<h2 role="button" class="btn btn-round3">3ª Rodada</h2>
<h2 role="button" class="btn btn-round-final">Fase Final</h2>
<h2 role="button" class="btn-round-arrow"><i class="fa-solid fa-chevron-right"></i></h2>
</div>
<div class="goals">
<h2 role="button" class="back-classification"><i class="fa-solid fa-chevron-left"></i></h2>
<h2 role="button" class="btn-strikers">Artilheiros</h2>
</div>
</div>
<div class="groups">
<div class="group group-a">
</div>
<div class="group group-b">
</div>
<div class="group group-c">
</div>
<div class="group group-d">
</div>
<div class="group group-e">
</div>
<div class="group group-f">
</div>
<div class="group group-g">
</div>
<div class="group group-h">
</div>
</div>
<div class="games">
<div class="round-game round1">
</div>
<div class="round-game round2">
</div>
<div class="round-game round3">
</div>
<div class="round-game round-final">
</div>
</div>
<div class="classification">
</div>
<div class="strikers">
</div>
<div class="about">
</div>
</div>
<script>
</script>
<script type="module" src="./assets/js/script.js"></script>
</body>
</html>