-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (41 loc) · 1.27 KB
/
index.html
File metadata and controls
55 lines (41 loc) · 1.27 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
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<link rel="icon" href="images/favicon.png">
<link rel="stylesheet" href="style/style.css">
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<script src="script/script.js" defer></script>
</head>
<body>
<div>
<canvas id="line" width="1000" height="400">line</canvas>
</div>
<div>
<canvas id="bar" width="1000" height="400">bar</canvas>
</div>
<div>
<canvas id="radar" width="1000" height="400">radar</canvas>
</div>
<div>
<canvas id="donut" width="1000" height="400">donut</canvas>
</div>
<div>
<canvas id="circle" width="1000" height="400">circle</canvas>
</div>
<div>
<canvas id="nightingale" width="1000" height="400">nightingale</canvas>
</div>
<div>
<canvas id="bubble" width="1000" height="400">bubble</canvas>
</div>
<div>
<canvas id="scatter" width="1000" height="400">scatter</canvas>
</div>
<div>
<canvas id="area" width="1000" height="400">area</canvas>
</div>
<!-- <script type="module" src="chart.js"></script> -->
</body>
</html>