-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
67 lines (66 loc) · 2.37 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
<!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" />
<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"
/>
<link rel="stylesheet" href="./style.css" />
<link rel="icon" type="image/svg+xml" href="./files/football.png" />
<title>Calendario Copa</title>
</head>
<body class="">
<header>
<div class="wrapper">
<img
src="./files/2022_FIFA_World_Cup.svg"
alt="Logo Fifa Worls cup 2022"
/>
<h1>CALENDÁRIO</h1>
</div>
<div id="button">
<div class="switch">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 128 128"
style="enable-background: new 0 0 128 128"
xml:space="preserve"
>
<path
fill="#ffffff"
d="M64 45.364c-10.34 0-18.72 8.38-18.72 18.72 0 10.34 8.38 18.72 18.72 18.72s18.72-8.38 18.72-18.72c0-10.34-8.38-18.72-18.72-18.72zm0 3.72c-8.27 0-15 6.73-15 15h-1c0-8.82 7.18-16 16-16v1zm4.01-7.893h-8.02L64 32l4.01 9.191zM64 96l4.01-9.191h-8.02L64 96zm22.809-27.99v-8.02L96 64l-9.191 4.01zM32 64l9.191 4.01v-8.02L32 64zm50.964-13.293-5.672-5.672 9.335-3.663-3.663 9.335zm-41.591 35.92 9.335-3.663-5.672-5.672-3.663 9.335zm35.92-3.663 5.672-5.672 3.663 9.335-9.335-3.663zm-35.92-41.591 3.663 9.335 5.672-5.672-9.335-3.663z"
/>
</svg>
</div>
</div>
</header>
<main id="app">
<div class="wrapper">
<div id="cards"></div>
</div>
</main>
</body>
<footer>
<div class="wrapper">
<div>
<p>DESENVOLVIDO com</p>
<img
src="https://cdn-icons-png.flaticon.com/512/2448/2448648.png"
alt="imagem de uma mão segurando um corção"
/>
<p>por</p>
<a href="https://github.com/Gabriel-Santos01" target="_blank"
>gabriel Santos</a
>
</div>
</div>
</footer>
<script src="./app.js"></script>
<canvas class="background"></canvas>
<script src="./files/backgrounds/particles.js"></script>
</html>