-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (31 loc) · 1004 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
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<title>Visualizer</title>
<style>
div {
display: flex;
box-sizing: border-box;
/* justify-content: stretch; */
/* align-items: center; */
}
span, input, button, p, select{
box-sizing: border-box;
margin: 10px 0px;
padding: 5px;
}
</style>
<script type="text/javascript" src="p5.js"></script>
<script type="text/javascript" src="objects.js"></script>
<script type="text/javascript" src="main.js"></script>
<script type="text/javascript" src="helpers.js"></script>
<!-- your code goes below here -->
<script type="text/javascript" src="topologicalsort.js"></script>
<script type="text/javascript" src="johnsons.js"></script>
<script type="text/javascript" src="boruvka.js"></script>
</head>
<body>
<div id="data"></div>
</body>
</html>