-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
21 lines (21 loc) · 692 Bytes
/
index.html
File metadata and controls
21 lines (21 loc) · 692 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="en" onclick="jump()" onclick="startGame()">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>First JavaScript Game</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<div id="header"><span id="heading"><h1>Jump to Win!</h1> </span></div>
<div id="game">
<div id="character"></div>
<div id="block"></div>
</div>
<script src="script.js"></script>
<div class="button-container"> <button id="startButton"><a href="">
<div id="button-text"> Start Game! </div></a>
</button>
</div>
</body>
<script src="script.js"></script>
</html>