We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d15c520 commit eb4e711Copy full SHA for eb4e711
Source-Code/JumpGame/index.html
@@ -1,11 +1,20 @@
1
<!DOCTYPE html>
2
<html lang="en">
3
-<head>
4
- <meta charset="UTF-8">
5
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>Document</title>
7
-</head>
8
-<body>
9
-
10
-</body>
11
-</html>
+ <head>
+ <meta charset="UTF-8" />
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+ <title>Jump Game</title>
+ <link rel="stylesheet" href="style.css" />
+ </head>
+ <body>
+ <h2>Jump Game</h2>
+ <p id="co">Press space to jump</p>
12
+ <div class="game">
13
+ <div id="character"></div>
14
+ <div id="block"></div>
15
+ <div id="block2"></div>
16
+ </div>
17
+ <p>Score: <span id="scoreSpan"></span></p>
18
+ <script src="script.js"></script>
19
+ </body>
20
+</html>
0 commit comments