-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
57 lines (44 loc) · 1.79 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
<!doctype html>
<html lang="de">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Verbreitung Covid-19 in Niedersachsen">
<title>Verbreitung Covid-19 in Niedersachsen</title>
<link rel="icon" href="/favicon.ico">
<script type="text/javascript" src="viz/lib/d3.js"></script>
<!-- Bootstrap core CSS -->
<link href="viz/lib/bootstrap.min.css" rel="stylesheet">
<!-- Custom fonts for this template -->
<link href="viz/fonts/fontawesome/css/all.css" rel="stylesheet" type="text/css">
<link href="viz/fonts/vollkorn" rel="stylesheet" type="text/css">
<link href='viz/fonts/open-sans' rel='stylesheet' type='text/css'>
<!-- Custom styles for this template -->
<link href="style.css" rel="stylesheet">
</head>
<body>
<!-- About Section -->
<section class="content-section text-center">
<div class="container">
<div class="row">
<div class="col-lg-8 mx-auto">
<h1>Verbreitung von Covid-19 in Niedersachsen</h1>
<p>Hier werden die einzelnen Kreise angezeigt. Die Daten basieren auf denen, die von den einzelnen Kommunen auf ihren Webseiten bereitgestellt werden bzw. den Zahlen des Robert Koch Instituts, wenn diese höher sind.</p>
</div>
</div>
</div>
</section>
<section class="content-section text-center">
<div class="container">
<div class="col-lg-8 mx-auto text-center">
<h2>Niedersachsen im Überblick</h2>
<p>Hier werden die einzelnen Kreise je nach ihrer Fallzahl eingefärbt.</p>
<svg id="vis_map" width="800" height="700"></svg>
</div>
</div>
</section>
</body>
<!-- Custom scripts for this template -->
<!-- <script src="script.js"></script> -->
<script src="script.js"></script>
</html>