-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathindex.html
64 lines (64 loc) · 1.81 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Olympic medals per continent in Paris 2024</title>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="./favicon-16x16.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="96x96"
href="./favicon-96x96.png"
/>
<link
rel="icon"
type="image/png"
sizes="192x192"
href="./favicon-192x192.png"
/>
<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=Manrope:[email protected]&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div class="card cloak">
<h1 style="--index: 1">Olympic medals per continent* in Paris 2024</h1>
<div style="--index: 2" class="graph" id="graph"></div>
<aside style="--index: 3">
<p class="methodology">
* The composition of nations by continent and their subregions is
based on UN's macro geographical (continental) regions, which can be
found in:
<a href="https://unstats.un.org/unsd/methodology/m49" target="_blank"
>unstats.un.org</a
>
</p>
<p class="source">
Source :
<a
href="https://www.olympiandatabase.com/index.php?id=180770&L=1"
target="_blank"
>olympiandatabase.com</a
>
</p>
</aside>
</div>
<div class="mascots" id="mascots"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>