-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (29 loc) · 814 Bytes
/
index.html
File metadata and controls
33 lines (29 loc) · 814 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
31
32
33
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Maze: by Bradford Nelson</title>
<style>
html,
body {
display: block;
margin: 0;
padding: 0;
}
canvas {
display: block;
margin: 0;
}
</style>
</head>
<body>
<script type="text/javascript" src="./js/p5.js"></script>
<script type="text/javascript" src="./js/node.js"></script>
<script type="text/javascript" src="./js/maze.js"></script>
<script type="text/javascript" src="./js/mazeDFSGen.js"></script>
<script type="text/javascript" src="./js/aStarAI.js"></script>
<script type="text/javascript" src="./js/sketch.js"></script>
</body>
</html>