Create Ocg.html
Browse files
Ocg.html
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
+
<title>ECG Graph</title>
|
7 |
+
<style>
|
8 |
+
canvas {
|
9 |
+
border: 1px solid black;
|
10 |
+
}
|
11 |
+
</style>
|
12 |
+
</head>
|
13 |
+
<body>
|
14 |
+
<button id="show-button">Show ECG</button>
|
15 |
+
<canvas id="ecg-canvas" width="400" height="100"></canvas>
|
16 |
+
<script src="script.js"></script>
|
17 |
+
</body>
|
18 |
+
</html>
|