-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (31 loc) · 836 Bytes
/
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
<!-- https://github.com/atasoglu98/Pathfinding-with-Genetic-Algorithm -->
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<style type="text/css">
canvas {
/*
margin:0px auto;
display: block; */
border:1.6px solid #000;
}
body {
/*text-align: center;*/
font-family: monospace;
font-size: 12pt;
}
</style>
<title>Path Finding w/ GA</title>
<script src="p5/p5.min.js"></script>
<script src="p5/p5.dom.min.js"></script>
<script src="sketch.js"></script>
<script src="dna.js"></script>
<script src="chromosome.js"></script>
<script src="population.js"></script>
<!-- <script src="maze.js"></script> --> <!-- coming soon -->
</head>
<body>
<h1>Path Finding w/ Genetic Algorithm</h1>
</body>
</html>