-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (28 loc) · 1.07 KB
/
index.html
File metadata and controls
31 lines (28 loc) · 1.07 KB
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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8" />
<title>Corona-Verbreitung</title>
<link rel="stylesheet" href="map.css" />
</head>
<body>
<h1>Corona-Verbreitung</h1>
<form>
<label for="resolution">Resolutin</label>
<select id="resolution" name="resolution">
<option value="high">high</option>
<option value="medium">medium</option>
<option value="low">low</option>
</select>
<label for="state">Bundesland</label>
<select id="state" name="state"></select>
<label for="zoom">Zoom</label>
<input type="number" id="zoom" name="zoom" min="0" max="1000" value="6">
</form>
<div id="overlay" class="loader"></div>
<svg id="map" width="1000" viewBox="0 0 1000 1000">
<path d = "M 0 500 L 250 500" fill="transparent" stroke="black"/>
</svg>
<script type="module" src="main.js"></script>
</body>
</html>