-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (32 loc) · 985 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
32
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>JS Game</title>
<link rel="stylesheet" href="./main.css" />
<link rel="shortcut icon" href="" />
<script src="./howler.js" defer></script>
<script src="./tuna.js" defer></script>
<script src="./howler-plugin-effect-chain.js" defer></script>
<script src="./scripts.js" type="module" defer></script>
</head>
<body>
<div class="viewer">
<canvas id="c"></canvas>
</div>
<div class="intro">
<div class="modal">
<h2>OBJECT CLOUD</h2>
</div>
</div>
<div class="modal-bg">
<div class="modal">
<h2>GAME OVER</h2>
<h2 class="modal__score">SCORE - <span id="final-score"></span></h2>
<h2>REPLAY >>> <span id="replay">X</span></h2>
</div>
</div>
</body>
</html>