Pezh commited on
Commit
7f79e76
1 Parent(s): fcbffe4

Create Ocg.html

Browse files
Files changed (1) hide show
  1. Ocg.html +18 -0
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>