-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlevel3.html
More file actions
26 lines (22 loc) · 858 Bytes
/
level3.html
File metadata and controls
26 lines (22 loc) · 858 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Level 3</title>
<link rel="stylesheet" href="level_3.css">
</head>
<body>
<p id="textTitle"> Now Climb to VICTORY to claim your Account!</p>
<p id="block1"> PLATFORM </p>
<p id="block2"> PLATFORM </p>
<p id="block3"> PLATFORM </p>
<p id="block4"> PLATFORM </p>
<p id="block5"> PLATFORM </p>
<p id="block6"> PLATFORM </p>
<button class="trigger" id="exit" data-function="goToEnd" tabindex="-1"> EXIT </button>
<canvas id="gameCanvas" style="position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -1;"></canvas>
<script src="cubePlatformer.js"></script>
<script src="level_3_gimmicks.js"></script>
</body>
</html>