-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
executable file
·32 lines (31 loc) · 1.29 KB
/
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>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Tower Stack Game</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="author" content="billsedison">
<meta name="description" content="Srims poc">
<link rel="stylesheet" href="style.css">
<script src="build/bundle.js"></script>
</head>
<body>
<meta name="viewport" content="width=device-width,user-scalable=no">
<div id="container">
<div id="game"></div>
<div id="score">0</div>
<div id="instructions">Click (or press the spacebar) to place the block</div>
<div class="game-over">
<h2>Game Over</h2>
<p>You did great, you're the best.</p>
<p>Click or spacebar to start again</p>
</div>
<div class="game-ready">
<div id="start-button">Start</div>
<div></div>
</div>
<audio id="music" src="sound/bensound-dreams.mp3" preload="auto" loop></audio>
</div>
<footer style="position:fixed;bottom:1em;left:1em;font-size:12px">Music : <a href="https://www.bensound.com/royalty-free-music/track/dreams-chill-out">Royalty Free Music from Bensound</a></footer>
</body>
</html>