-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (56 loc) · 2.34 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
<!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 name="description" content="Calendário de jogos da Copa do Mundo no Qatar 2022" />
<title>Calendário de Jogos - Qatar 2022</title>
<link rel="icon" type="image/x-icon" href="./assets/favicon.png">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@8/swiper-bundle.min.css" />
<link rel="stylesheet" href="./css/main.min.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=Roboto:wght@400;700;900&display=swap" rel="stylesheet">
<link href="./assets/bg-red-light.jpg" rel="preload" as="image">
</head>
<body>
<div id="top-bar">
<ul>
<li class="link active"><a href="index.html">Calendário</a></li>
<li class="link"><a href="resultados.html">Resultados</a></li>
</ul>
</div>
<div id="app">
<header>
<img class="logo" src="./assets/logo-qatar-2022.webp" alt="Logo da Copa do Mundo Catar" width="120" height="120">
<img src="./assets/logo.svg" alt="Logo da NLW">
</header>
<nav id="menu"></nav>
<div class="swiper mySwiper">
<div class="swiper-wrapper">
</div>
<div class="swiper-button-next">
<img src="./assets/arrowRight.svg">
</div>
<div class="swiper-button-prev">
<img src="./assets/arrowLeft.svg">
</div>
</div>
<footer>
<p>
Projeto desenvolvido durante evento promovido pela
<a href="https://www.rocketseat.com.br/">Roceketseat</a>
</p>
<p>
Informações fornecidas pela
<a href="https://github.com/liverday/world-cup-api">World Cup API</a>
do
<a href="https://github.com/liverday">liverday</a> (Vitor Medeiro)
</p>
</footer>
</div>
<script src="https://cdn.jsdelivr.net/npm/swiper@8/swiper-bundle.min.js"></script>
<script src="./js/calendario.js"></script>
</body>
</html>