-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
30 lines (24 loc) · 903 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.4.0/p5.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
<meta charset="utf-8" />
</head>
<body>
<script src="js/utils.js"></script>
<script src="js/bubbleSort.js"></script>
<script src="js/binaryInsertionSort.js"></script>
<script src="js/insertionSort.js"></script>
<script src="js/quickSort.js"></script>
<script src="js/radixSort.js"></script>
<script src="js/selectionSort.js"></script>
<script src="js/shakerSort.js"></script>
<script src="js/shellSort.js"></script>
<script src="js/mergeSort.js"></script>
<script src="sketch.js"></script>
</body>
</html>