-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjump.html
29 lines (29 loc) · 975 Bytes
/
jump.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Jump</title>
<link rel="stylesheet" href="./jump.css">
</head>
<body>
<div class="start-screen">
<h1 class="main-ttile">Karan Arjun</h1>
<p class="instruction">Once upon a time, in a bustling fairground, there were two brothers, named Karan and Arjun. They were on an adventure.
Help Karan connect with his brother Arjun.
<br> Use the left and right arrow keys to move forward and backward, and use the up arrow key or space keys to jump.<br>
</p>
<div class="btn-container">
<button class="btn" id="start-btn">
Start Game
</button>
</div>
</div>
<div class="checkpoint-screen">
<h2> </h2>
<p> </p>
</div>
<canvas id="canvas"></canvas>
<script src="./jump.js"></script>
</body>
</html>