-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (33 loc) · 893 Bytes
/
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
<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset='utf-8'>
<title> Jump Block </title>
<link rel="stylesheet" property="stylesheet" type="text/css" href="css/style.css" />
<head profile="favicon">
<link rel="icon"
type="image/png"
href="img/favicon.png">
</head>
<center>
<div class="container">
<body>
<ul>
<center>
<li><a href="index.html">Play Game</a></li>
<li><a href="about.html">About</a></li>
</center>
</ul>
<br>
Use AWSD or the arrow keys to move and space to jump :)
<br>
<br>
<canvas id="main" width="600" height="360" style="border: 1px solid green" tabindex="0" id="main" z-index=0>
Your browser doesn't support HTML5.
</canvas>
</center>
<script src="js/game.js">
</script>
</div>
</body>
</html>