-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlevel1.html
64 lines (47 loc) · 1.47 KB
/
level1.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
<title>Pokemon Adventure - Level 1</title>
<link rel="icon" type="image/png" sizes="96x96" href="resources/images/favicon-96x96.png">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="myNav" class="overlay">
<img id="logo" src="resources/images/pokemonLogo.png" alt="">
<h3> Paused </h3>
<!-- Overlay content -->
<div class="overlay-content">
<a href="https://pokedex.org" target="_blank" rel="noopener noreferrer">Pokedex</a>
<a href="level1.html">Restart</a>
<a href="index.html">Exit</a>
</div>
</div>
<div id="Win" class="overlay">
<img src="resources/images/pokemonLogo.png" alt="">
<h3> Congratulations! </h3>
<!-- Overlay content -->
<div class="overlay-content">
<a id="explore" href=#>Keep Exploring</a>
<a href="level2.html">Proceed to Level 2</a>
<a href="level1.html">Restart Level</a>
<a href="index.html">Exit</a>
</div>
</div>
<div id="Lose" class="overlay">
<img src="resources/images/pokemonLogo.png" alt="">
<h3> You Lose! </h3>
<!-- Overlay content -->
<div class="overlay-content">
<a href="level1.html">Restart Level</a>
<a href="index.html">Exit</a>
</div>
</div>
<section id="loading-screen">
<div id="loader"></div>
</section>
<canvas id="c"></canvas>
</body>
<script src="World.js" type="module" ></script>
</html>