Cv / Ocg.html
Pezh's picture
Create Ocg.html
7f79e76 verified
raw
history blame contribute delete
439 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ECG Graph</title>
<style>
canvas {
border: 1px solid black;
}
</style>
</head>
<body>
<button id="show-button">Show ECG</button>
<canvas id="ecg-canvas" width="400" height="100"></canvas>
<script src="script.js"></script>
</body>
</html>