-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
41 lines (40 loc) · 1.33 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
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html>
<head>
<title>Snake Game</title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/custom.css">
<script src="js/jquery.min.js" type="text/javascript"></script>
<script src="js/bootstrap.min.js" type="text/javascript"></script>
<script src="js/script.js" type="text/javascript"></script>
</head>
<body>
<div class="container canvas-wrapper">
<div class="col-md-4 canvas">
<table class="table table-bordered">
<tbody>
</tbody>
</table>
</div>
<div class="col-md-offset-1 col-md-7 info-manage-tools-wrapper">
<div class="game-scoreboard">
<h2 class="alert alert-info m-tools-header" role="alert">Game Scoreboard</h2>
<p class="score-info">Your Score is: <span id="score">0</span></p>
<p class="times-wrapper" style="display:none;">
<span>Time needed per 10 eat: </span>
<span class="times"></span>
</p>
</div>
<div class="manage-tools-wrapper">
<div class="manage-tools">
<h2 class="alert alert-info m-tools-header" role="alert">Manage Tools</h2>
<div class="btn btn-success start-button left">Start Game</div>
<div class="btn btn-danger end-button left">End Game</div>
<div class="clear"></div>
<div class="info-wrapper"></div>
</div>
</div>
</div>
</div>
</body>
</html>