-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (69 loc) · 1.68 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<html>
<meta charset="UTF-8" />
<head>
<title>spaceship</title>
<link rel="stylesheet" type="text/css" href="style.css" />
<script type="text/javascript" src="spaceship.js"></script>
</head>
<body>
<noscript>
Javascript is disabled on this browser. </br>
Please enable Javascript to view this website properly. </br>
</br></br>
</noscript>
<div class="body">
<table align="center">
<tr class="body">
<td class="help">
<table class="help" align="right">
<tr class="title">
<td class="title">
how to play
</td>
</tr>
<tr class="instruction">
<td class="instruction">
move : W A S D
</td>
</tr>
<tr class="instruction">
<td class="instruction_end">
shoot: SPACE
</td>
</tr>
</table>
<table class="other" align="right">
<tr class="other_title" colspan="2">
<td class="other_title" colspan="2">
high scores
</td>
</tr>
<tr class="other_score">
<td class="other_score">
1. thatguy
</td>
<td class="other_score">
1000000
</td>
</tr>
<tr class="other_score_end">
<td class="other_score_end">
2. thisgirl
</td>
<td class="other_score_end">
999999
</td>
</tr>
</table>
</td>
<td class="body">
<canvas id="canvas">
HTML5 Canvas element <a href="http://html5test.com/">not supported</a> on this browser.</br>
Please upgrade your browser.</br>
</canvas>
</td>
</tr>
</table>
</div>
</body>
</html>