-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (36 loc) · 1.56 KB
/
index.html
File metadata and controls
46 lines (36 loc) · 1.56 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Chart js CDN-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.9.3/Chart.min.js" integrity="sha512-s+xg36jbIujB2S2VKfpGmlC3T5V2TF3lY48DX7u2r9XzGzgPsa6wTpOQA7J9iffvdeBN0q9tKzRxVxw1JviZPg==" crossorigin="anonymous"></script>
<script src="https://cdn.zingchart.com/zingchart.min.js"></script>
<link href="https://fonts.googleapis.com/css2?family=Faster+One&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="covid.css">
</head>
<body>
<div id="wrapper">
<!-- Graf container-->
<section class="button_list">
<button id="bar3d">3D Bar chart</button>
<button id="changeData">Line chart</button>
<button id="radar">Radar chart</button>
<button id="horizontalBar">Horizontal bar chart</button>
<button id="line3d">3D line chart</button>
<button>coming soon!</button>
<button>coming soon!</button>
<button>coming soon!</button>
<button>coming soon!</button>
<button>coming soon!</button>
</section>
<h1 class="title"></h1>
<div id="chart-one"></div>
</div>
<script src="covid.js" async defer></script>
</body>
</html>