-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
31 lines (28 loc) · 944 Bytes
/
index.html
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
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="css/estilo.css">
<script src="js/main.js"></script>
<audio>
<source id="batAce" src="sounds/batimentoAcelerado.wav" type="audio/wav">
<source id="batNor" src="sounds/batimentoNormal.wav" type="audio/wav">
<source id="batMor" src="sounds/batimentoMorto.wav" type="audio/wav">
<source id="rem" src="sounds/remessa.wav" type="audio/wav">
</audio>
</head>
<body onload="load()">
<div id="wrapper">
<img src="imagens/newLogo.png" id="logo">
<canvas id="heartCanvas" width="150" height="150"></canvas>
<canvas id="box" width="330" height="160"></canvas>
</div>
<div id="text">
<h1 id="bpm">0</h1>
<h1 id="hidratacao">0</h1>
<h1 id="energia">0</h1>
</div>
<div id="score_box">
<h1 id="score">0</h1>
</div>
</body>
</html>