-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (50 loc) · 1.88 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Maze Generator</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.1/css/all.min.css"
integrity="sha256-2XFplPlrFClt0bIdPgpz8H7ojnk10H69xRqd9+uTShA="
crossorigin="anonymous"
/>
<script>
const hackee = `<img src="img/hackee.png" height="30px" width="30px">`;
const sortingHat = `<img src="img/sorting-hat.png" height="30px" width="30px">`;
</script>
<!-- HowlerJS -->
<script
src="https://cdnjs.cloudflare.com/ajax/libs/howler/2.2.3/howler.min.js"
integrity="sha512-6+YN/9o9BWrk6wSfGxQGpt3EUK6XeHi6yeHV+TYD2GR0Sj/cggRpXr1BrAQf0as6XslxomMUxXp2vIl+fv0QRA=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
></script>
<link rel="stylesheet" href="css/maze.css" />
</head>
<body>
<div class="navbar">
<h1 class="title">
<a href="index.html" style="text-decoration: none; color: #035f50"
>Hungry Hackee Hunts</a
>
</h1>
<div class="generate-maze">Generate New Maze</div>
<div class="visualize-maze">Visualize</div>
<div class="checkbox"><i class="fas fa-check"></i></div>
<div class="generate-maze dropdown">
<i class="fas fa-lightbulb" style="color: rgb(241, 172, 44)"></i>
Hint to reach Level 2
<span class="dropdown-content">
Help Hackee solve the maze using WASD or Arrow Keys
<i class="fas fa-map-pin"></i>
</span>
</div>
</div>
</body>
<script type="text/javascript" src="js/cell.js"></script>
<script type="text/javascript" src="js/maze-generator.js"></script>
<script type="text/javascript" src="js/game.js"></script>
</html>