-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (30 loc) · 1.16 KB
/
index.html
File metadata and controls
33 lines (30 loc) · 1.16 KB
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
<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 Generating Algorithms</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0-rc.2/css/materialize.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h2 id="title">Maze Generating Algorithms</h2>
<div class="footer-copyright"></div>
<blockquote>
A collection of maze generating algorithms, implemented in javascript with the awesome
<a href='https://p5js.org/'>p5.js library</a>.
</blockquote>
<div class="card">
<div class="collection">
<a href="./generators/Kruskals/" class="collection-item">Kruskal's Algorithm</a>
<a href="./generators/RecursiveBacktracker/" class="collection-item">Recursive Backtracker</a>
</div>
</div>
</div>
<p>
Created by
<a class="red-text" href="https://github.com/cahilfoley">@cahilfoley</a>
</p>
</body>
</html>