-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (36 loc) · 1.36 KB
/
index.html
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
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Path Finder</title>
<link rel="stylesheet" type="text/css" href="./css/main.css" />
<link rel="stylesheet" type="text/css" href="./css/bulma.min.css" />
<link rel="stylesheet" type="text/css" href="./css/gh-fork-ribbon.min.css" />
</head>
<body>
<a class="github-fork-ribbon" href="https://github.com/MarkWh1te/PathFinder" data-ribbon="Fork me on GitHub"
title="Fork me on GitHub">Fork me on GitHub</a>
<nav class="bd-navbar navbar has-shadow is-dark is-spaced" role="navigation" aria-label="main navigation">
<div class="container">
<div class="columns">
<div class="column">
<button class="button is-light generate-maze">
Generate New Maze
</button>
</div>
<div class="column">
<button class="button is-light find-path">
Find Path
</button>
</div>
</div>
</div>
</nav>
<main class="bd-main">
<canvas id="canvas" width="600" height="600"></canvas>
</main>
<script src="./js/util.js"></script>
<script src="./js/main.js"></script>
</body>
</html>