-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
16 lines (16 loc) · 826 Bytes
/
index.html
File metadata and controls
16 lines (16 loc) · 826 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<link rel="stylesheet" href="src/visualizer.css"></link>
<script type="module" src="src/PriorityQueue.js"></script>
<script type="module" src="src/visualizer.js"></script>
</head>
<body>
<h1 id="header">Path Finding Algorithm Visualizer</h1>
<div class="container"></div>
<div id="footer">
<p class="instructions">Click and drag to draw walls in the grid for the algorithm to navigate around.</p>
<p class="instructions">To start the algorithm, select a cell on the grid and the algorithm will start with this cell as the starting point.</p>
<p class="instructions">Drag and drop the end point anywhere in the grid for the algorithm to navigate to.</p>
</div>
</body>