-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
30 lines (26 loc) · 1.01 KB
/
Copy pathtest.html
File metadata and controls
30 lines (26 loc) · 1.01 KB
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
<!-- <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link href="style.css" rel="stylesheet">
<title>Respiration & Heart Rate Animation</title>
</head>
<body>
<h1>How long can you spend on a treadmill?</h1>
<h2>Control Respiration, Heart Rate and Gas Exchange</h1>
<div class="controls">
<label>RR (breaths/min): <input type="number" id="rrInput" value="12"></label>
<label>HR (beats/min): <input type="number" id="hrInput" value="72"></label>
<label>VE (L/min): <input type="number" id="veInput" value="10"></label>
<label>VO₂ (mL/min): <input type="number" id="vo2Input" value="350"></label>
<label>VCO₂ (mL/min): <input type="number" id="vco2Input" value="320"></label>
</div>
<button id="update">Update</button>
<div>
<img src="img/lung.png" id="lungs" class="breath">
<img src="img/heart.png" id="heart" class="heartbeat">
</div>
<div class="animation-container" id="animationArea"></div>
<script type="module" src="main.js"></script>
</body>
</html> -->