-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (30 loc) · 1.21 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
<!DOCTYPE html>
<html lang="en">
<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">
<!-- Resources -->
<script src="https://cdn.amcharts.com/lib/5/index.js"></script>
<script src="https://cdn.amcharts.com/lib/5/map.js"></script>
<script src="https://cdn.amcharts.com/lib/5/geodata/region/world/europeHigh.js"></script>
<script src="https://cdn.amcharts.com/lib/5/themes/Animated.js"></script>
<link rel="stylesheet" href="./dist/main.css" />
<script type="text/javascript" src="./dist/main.js" charset="utf-8" defer></script>
<title>Document</title>
</head>
<body>
<div class="title">Ukrainian Refugee Count From March to June</div>
<aside>
Since the beginning of Russian invasion of Ukraine in February 24th, 2022, millions of Ukrainian families seeked asylum in nearby countries.
</aside>
<div id="total-count"></div>
<div id="date"></div>
<div class="slidecontainer">
<input type="range" min="0" max="11" value="0" class="slider" id="myRange">
</div>
<div class="chart-container">
<div id="chartdiv"></div>
</div>
</body>
</html>