-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchart.html
More file actions
33 lines (23 loc) · 989 Bytes
/
chart.html
File metadata and controls
33 lines (23 loc) · 989 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>chart.js</title>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<script src="https://cdn.jsdelivr.net/npm/chart.js@3.3.2/dist/chart.esm.js"></script>
<script src="https://cdn.jsdelivr.net/npm/chart.js@3.3.2/dist/chart.esm.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/chart.js@3.3.2/dist/chart.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/chart.js@3.3.2/dist/chart.js"></script>
<script src="https://cdn.jsdelivr.net/npm/chart.js@3.3.2/helpers.esm.min.js"></script>
</head>
<body>
<div class="container">
<div id>
<h2 style="text-align: center;">Appointments for Consultation with our doctors</h2>
<canvas id ="chart" width="250" height="200"></canvas>
<script src="chart.js"></script>
</div>
</div>
</script>
</body>
</html>