-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (35 loc) · 1.07 KB
/
index.html
File metadata and controls
39 lines (35 loc) · 1.07 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
<!DOCTYPE html>
<html>
<head>
<title>Snake</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="snake.js"></script>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header class="navbar-fixed-top">
<div class="text-center">
<h1>Snake</h1>
</div>
</header>
<div id="content">
<div id="left-content">
<h2>High Scores</h2>
<ol id="high-scores">
</ol>
</div>
<div id="right-content">
<canvas id="canvas" width="900px" height="400px"></canvas>
<div class="button-bar" role="group">
<button type="button" id="play-button" class="btn btn-lg btn-custom btn-custom-green">Let's Play!</button>
<div id="level">
<p>Level: 1</p>
</div>
<!-- <button type="button" class="btn btn-lg btn-custom btn-custom-orange">View Leaderboard</button> -->
</div>
</div>
</div>
</body>
</html>