-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (36 loc) · 1.11 KB
/
index.html
File metadata and controls
40 lines (36 loc) · 1.11 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
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Stack It!</title>
<link rel="icon" href="icon.png" type="image/x-icon">
<link rel="stylesheet" href="./style.css">
</head>
<body>
<!-- partial:index.partial.html -->
<div id="instructions">
<div class="content">
<p>Stack the blocks on top of each other</p>
<p>Click, tap or press Space when a block is above the stack. Can you reach the blue color blocks?</p>
<p>Click, tap or press Space to start game</p>
</div>
</div>
<div id="results">
<div class="content">
<h2>You missed the block!</h2>
<button id="start-button">Reset</button>
<p>You Can Also Click "R" To Reset</p>
<p>
<a href="https://github.com/Likheet" , target="_blank">My Github</a>
</p>
</div>
</div>
<div id="front-score">Score: </div>
<div id="score">0</div>
<!-- partial -->
<script src='https://cdnjs.cloudflare.com/ajax/libs/three.js/r124/three.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/cannon.js/0.6.2/cannon.min.js'></script><script src="./script.js"></script>
<div id="bg"></div>
</div>
</body>
</html>