summaryrefslogtreecommitdiff
path: root/mazesolver.html
diff options
context:
space:
mode:
Diffstat (limited to 'mazesolver.html')
-rw-r--r--mazesolver.html51
1 files changed, 26 insertions, 25 deletions
diff --git a/mazesolver.html b/mazesolver.html
index e62fcbb..64d15a4 100644
--- a/mazesolver.html
+++ b/mazesolver.html
@@ -1,39 +1,40 @@
<html>
-<head>
-<link href="css/bootstrap.min.css" rel="stylesheet">
-<link href="css/style.css" rel="stylesheet">
-<title>Maze Solver</title>
-</head>
+ <head>
+ <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
+ <link href="css/style.css" rel="stylesheet">
+ <title>Maze Solver</title>
+ <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
+ </head>
-<body>
+ <body>
-<h2>Maze Solver</h2>
-<div id="header_links_div"></div>
-<script src="js/header_links.js"></script>
-<hr>
+ <div id="navbar"></div>
+ <script src="navbar.js"></script>
+ <h2>Maze Solver</h2>
+ <hr>
-<p>Maze Solver is a computer program that can solve mazes.<br>
-It works using <a href='https://www.khanacademy.org/computing/computer-science/algorithms/intro-to-algorithms/a/route-finding'>this algorithm</a>. To create a
-maze, just left-click and drag on the screen below to create walls, middle-click to clear walls, and right-click to place start and ending locations. Then,
-click the button saying "Solve Maze" and it will draw red circles connecting your start location to your end location.</p>
+ <p>Maze Solver is a computer program that can solve mazes.<br>
+ It works using <a href='https://www.khanacademy.org/computing/computer-science/algorithms/intro-to-algorithms/a/route-finding'>this algorithm</a>. To create a
+ maze, just left-click and drag on the screen below to create walls, middle-click to clear walls, and right-click to place start and ending locations. Then,
+ click the button saying "Solve Maze" and it will draw red circles connecting your start location to your end location.</p>
-<button onclick='startCreation();' id='StartButton'>Create Maze</button><br><br>
+ <button onclick='startCreation();' id='StartButton'>Create Maze</button><br><br>
-<p id='DoesItWork' style="color:#ff0000;"></p>
+ <p id='DoesItWork' style="color:#ff0000;"></p>
-<form id='Form'>
-Size: <input type='number' value=50>
-</form>
+ <form id='Form'>
+ Size: <input type='number' value=50>
+ </form>
-<canvas height=0 width=0 id='Canvas' oncontextmenu='return false;'></canvas>
+ <canvas height=0 width=0 id='Canvas' oncontextmenu='return false;'></canvas>
-<script src="js/mazesolver.js"></script>
+ <script src="js/mazesolver.js"></script>
-</body>
-<footer>
-<p>MazeSolver is licensed under the <a href='LICENSE.txt'>GNU General public license</a>.</p>
-</footer>
+ </body>
+ <footer>
+ <p>MazeSolver is licensed under the <a href='LICENSE.txt'>GNU General public license</a>.</p>
+ </footer>
</html>