-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
44 lines (35 loc) · 1.7 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Armenian Petrol Prices History</title>
<script src="https://unpkg.com/react@16/umd/react.development.js" crossorigin></script>
<script src="https://unpkg.com/react-dom@16/umd/react-dom.development.js" crossorigin></script>
<script src="https://unpkg.com/babel-standalone@6/babel.min.js"></script>
<script src="https://cdn.amcharts.com/lib/4/core.js"></script>
<script src="https://cdn.amcharts.com/lib/4/charts.js"></script>
<script src="https://cdn.amcharts.com/lib/4/themes/animated.js"></script>
<link rel="stylesheet" href="src/styles.css">
</head>
<body>
<h3>
Armenian public petrol prices history
</h3>
<label for="interval-select">Load data with interval of</label>
<select name="interval" id="interval-select">
<option value="1">1 days</option>
<option value="2">2 days</option>
<option value="5">5 days</option>
<option value="10">10 days</option>
</select>
<div id="container"></div>
<div id="downloadLinkContainer">
<a href="https://github.com/KoStard/petrol_price_history_arm/archive/master.zip" id="downloadLink">
Download the project with whole registered history starting from 2020 September 19
</a>
</div>
<script data-plugins="transform-es2015-modules-umd" type="text/babel" src="src/loadingScreen.js"></script>
<script data-plugins="transform-es2015-modules-umd" type="text/babel" src="src/historyGraph.js"></script>
<script data-plugins="transform-es2015-modules-umd" type="text/babel" src="src/container.js"></script>
</body>
</html>