-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlevel1.html
More file actions
27 lines (23 loc) · 1.03 KB
/
level1.html
File metadata and controls
27 lines (23 loc) · 1.03 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Level 1</title>
<link rel="stylesheet" href="level_1.css">
</head>
<body>
<h1 id="title"> BUT TO CREATE YOUR ACCOUNT YOU NEED TO FIRST PROVE YOU'RE WORTHY!! >:) </h1>
<p id="block1"> Also btw the FLOOR IS LAVA! </p>
<p id="platform1"> PLATFORM </p>
<p id="platform2"> PLATFORM </p>
<p id="platform3"> PLATFORM </p>
<p id="platform4"> PLATFORM </p>
<canvas id="gameCanvas" style="position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;"></canvas>
<button class="trigger" id="exit" data-function="goToLevel2" tabindex="-1"> EXIT </button>
<div class="trigger" id="lava" data-function="pain"> LAVA LAVA LAVA LAVA LAVA LAVA LAVA LAVA LAVA LAVA</div>
<div class="trigger" id="switch" data-function="shift"></div>
<script src="cubePlatformer.js"></script>
<script src="level_1_gimmicks.js"></script>
</body>
</html>