-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (29 loc) · 852 Bytes
/
index.html
File metadata and controls
30 lines (29 loc) · 852 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
27
28
29
30
<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://cdn.jsdelivr.net/npm/p5@1.0.0/lib/p5.js"></script>
<link
href="https://fonts.googleapis.com/css2?family=Lato&family=Monoton&family=Press+Start+2P&display=swap"
rel="stylesheet"
/>
<title>Rescue Maze</title>
<script
language="javascsript"
type="text/javascript"
src="Maze.js"
></script>
<script language="javascript" type="text/javascript" src="Cell.js"></script>
<link rel="stylesheet" type="text/css" href="smartescape.css" />
</head>
<body>
<h1>RESCUE MAZE</h1>
<div id="buttons">
<button type="button" onclick="resetButton()" id="restartButton">
RESET
</button>
<button type="button" onclick="beginButton()" id="beginButton">
BEGIN
</button>
</div>
</body>
</html>