-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
26 lines (26 loc) · 958 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>3D Guitar Hero</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap">
<link rel="stylesheet" href="./css/styles.css">
</head>
<body>
<div id="game-container">
<div id="info">GuitarHeroJS</div>
<div id="score">Score: 0</div>
<div id="buttons">
<button id="startBtn">Start</button>
<button id="pauseBtn">Pause</button>
<button id="debugBtn">Debug</button>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script>
<script src="./engine/scene.js"></script>
<script src="./engine/notes.js"></script>
<script src="./engine/effects.js"></script>
<script src="./engine/main.js"></script>
</body>
</html>