-
Notifications
You must be signed in to change notification settings - Fork 0
/
jump.html
39 lines (35 loc) · 1.11 KB
/
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
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="jump.css">
<link rel="stylesheet" href="style.css">
<title>Brain Training Simulator</title>
</head>
<body>
<div class="game_page">
<header>
<a href="index.html">
Vlad's Fun Games
</a>
<div>
<a href="index.html" class="button_wrap"><button>< Back to Arcade Home</button></a>
</div>
</header>
<main class="game">
<div class="game">
<div id="character"></div>
<div id="block">
</div>
</div>
</main>
<p id="total_score">Score: <span id="scoreSpan"></span></p>
<footer>
<button id="jump_action">JUMP!</button>
<p id="credits">This site was created for educational purposes only by someone at <a href="https://www.bellevuecollege.edu">Bellevue College</a></p>
</footer>
</div>
<script src="jump.js"></script>
</body>
</html>