-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (28 loc) · 759 Bytes
/
index.html
File metadata and controls
35 lines (28 loc) · 759 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Chart-access Example</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- <script src="node_modules/chart.js/dist/Chart.js"></script> -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.9.3/Chart.bundle.js"></script>
<style>
article {
max-width: 800px;
width: 100%;
margin: 40px auto;
}
</style>
</head>
<body>
<article>
<canvas id="titledChart"></canvas>
</article>
<article>
<canvas id="untitledChart"></canvas>
</article>
<script src='main.js'></script> <!-- chartaccess -->
<script src='example.js'></script> <!-- chart-access example -->
</body>
</html>