-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (72 loc) · 2.75 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
<!DOCTYPE html>
<html lang="da-DK">
<head>
<!-- Meta Content -->
<meta charset="UTF-8" />
<meta name="description" content="De kedelige tal - Corona-statistik for den danske befolkning" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#ffffff" />
<!-- Favicon & Apple Touch Icon -->
<link href="img/favicon.png" rel="icon" type="image/png" sizes="32x32" />
<link href="img/apple-touch-icon.png" rel="apple-touch-icon" />
<!-- Google Font API -->
<link
href="https://fonts.googleapis.com/css2?family=Comfortaa:wght@500&family=Play:wght@700&display=swap"
rel="stylesheet"
/>
<!-- Custom Stylesheets -->
<link href="css/main.css" rel="stylesheet" />
<link href="css/tooltip.css" rel="stylesheet" />
<link href="css/mq.css" rel="stylesheet" />
<!-- Title Tag -->
<title>Corona-statistik for den danske befolkning</title>
</head>
<body>
<div class="container">
<div class="stats">
<h1>Corona i Danmark</h1>
<!-- Stats Today -->
<div class="stats-today">
<h2>I dag</h2>
<ul>
<li>Smittede: <span class="stats-today-confirmed"></span></li>
<li>Døde: <span class="stats-today-deaths"></span></li>
</ul>
</div>
<!-- Stats Total -->
<div class="stats-total">
<h2>I alt</h2>
<ul>
<li>Smittede: <span class="stats-total-confirmed"></span></li>
<li>Kritiske: <span class="stats-total-critical"></span></li>
<li>
Døde:
<span class="stats-total-deaths"></span>
<span class="stats-total-tooltip">
%
<span class="stats-total-tooltip-death-rate stats-total-tooltip-text"></span>
</span>
</li>
<li>
Raske:
<span class="stats-total-recovered"></span>
<span class="stats-total-tooltip">
%
<span class="stats-total-tooltip-recovery-rate stats-total-tooltip-text"></span>
</span>
</li>
</ul>
</div>
</div>
<h1 class="source toggle-source">Kilde</h1>
</div>
<div class="footer">
Statistikken opdateres dynamisk og er baseret på data fra The World Health Organization Situation Reports, Johns
Hopkins CSSE, The U.S. Department of Health & Human Services, The National Health Commission of the People’s
Republic of China, The European Centre for Disease Prevention and Control og China CDC Weekly.
<span class="footer-close-button">Luk</span>
</div>
<!-- Include Custom JavaScript -->
<script src="js/main.js"></script>
</body>
</html>