-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (27 loc) · 921 Bytes
/
index.html
File metadata and controls
32 lines (27 loc) · 921 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>UpJump By Salty</title>
<meta name="author" content="">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon">
<link rel="icon" href="images/favicon.ico" type="image/x-icon">
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<div>
<h1>UpJump</h1>
<h2>By Salty</h2>
<br>
<br>
<canvas id="myCanvas" width="1000" height="500"></canvas>
<br>
<!--
<p>Player 1 use the w, a, d keys to move and s to shoot.<br>Player 2 use the i, j, l keys to move and k to shoot.<br>You can only shoot while in the air and you can only have one bullet on the screen at one time.<br>First to 10 points wins!</p>
-->
</div>
<script src="js/script.js"></script>
</body>
</html>