-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsnake.html
54 lines (50 loc) · 1.08 KB
/
snake.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
43
44
45
46
47
48
49
50
51
52
53
54
<html>
<head>
<title>Snake</title>
<style>
.header {
display: inline-block;
width: 500px;
font-family: "Courier New", Courier, monospace;
padding-bottom: 5px;
}
.title {
font-size: 30px;
width: 50%;
}
.centerTitle {
font-size: 20px;
width: 50%;
text-align: center;
}
.rightTitle {
font-size: 30px;
width: 50%;
text-align: right;
}
.footer {
display: inline-block;
width: 500px;
font-family: "Courier New", Courier, monospace;
padding-top: 10px;
}
</style>
</head>
<body>
<div class="header">
<div class="title" style="float: left">Snake</div>
<div class="rightTitle" style="display: inline-block">
Score -
<div id="score" style="display:inline-block"></div>
</div>
</div>
<canvas id="game" width="500" height="500"></canvas>
<div class="footer">
<div class="centerTitle" style="float: left"> Spacebar - Pause</div>
<div class="centerTitle" style="display: inline-block; float: right">
"R" - Reset
</div>
</div>
</body>
<script src="snake.js"></script>
</html>