-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgame.html
42 lines (41 loc) · 1.59 KB
/
game.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
33
34
35
36
37
38
39
40
41
42
<html>
<script src="https://code.jquery.com/jquery-2.2.4.min.js" integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" crossorigin="anonymous"></script>
<script src='game.js'></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="game.css"></link>
<body>
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<ul class="nav navbar-nav">
<li class="active"><a href="#">Home <span class="sr-only">(current)</span></a></li>
<li><a href="#">About</a></li>
</ul>
</div>
</nav>
<hr>
<div class='well-color center'>
<div>
<div id='game-screen'>
<div id='progress-bar'></div>
<div id='info'>
<div id='level'>Level 1</div>
<div id='score'>Score: 0</div>
</div>
<span id='gameover'>
<div>GAME OVER</div>
<div id='final-score'>FINAL SCORE:1234</div>
<div>Name:<input type='text' id='username' /><button id='submit-score'>Submit</button></div>
<hr />
<div>Play again?</div>
<div><span id='yes' class='play-again'>Yes</span> <span class='verticalLine'></span> <span id='no' class='play-again'>No</span></div>
</span>
<span id='person'></span>
</div>
</div>
</div>
<div id='high-scores-table'>
<h1 id="high-scores-title">HIGH SCORES</h1>
<ol id='high-scores' type="1"></ol>
</div>
</body>
</html>