-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (27 loc) · 918 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<script src="https://unpkg.com/[email protected]/dist/ml5.min.js" type="text/javascript"></script>
<link rel="stylesheet" href="./css/style.css" />
<script defer src="./js/decodeObj.js"></script>
<script defer src="./js/renderPolygons.js"></script>
<script defer src="./js/init.js"></script>
<script defer src="./js/fruit.js"></script>
<script defer src="./js/index.js"></script>
</head>
<body>
<video id="video" autoplay muted></video>
<game>
<p id="score">Score: 0</p>
<p id="strikes">Strikes: OOO</p>
<p id="tutorial">Open your mouth, then close it when your lips touch the apple.</p>
<div id="restart">
<p id="high-score">High Score: 0</p>
<button id="restart-button">
Restart
</button>
</div>
</game>
</body>
</html>