-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (31 loc) · 1.09 KB
/
index.html
File metadata and controls
35 lines (31 loc) · 1.09 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
34
35
<!DOCTYPE html>
<head>
<link rel="stylesheet" href="sorting.css">
<title>
Sorting Visualizer
</title>
<link rel="icon" href="favicon.png" />
</head>
<body>
<h1><a target="_blank">Sorting Visualizer</a></h1>
<button id="newarr">New array</button>
<span style="font-size: large; color: white;">
Size:<input id="sizer" type="range" min=20 max=100 step=1 value=60>
</span>
<span style="font-size: large; color: white;">
Speed:<input id="speed" type="range" min=10 max=240 step=1 value=100>
</span>
<button id="bubble">Bubble Sort</button>
<button id="selection">Selection Sort</button>
<button id="insertion">Insertion Sort</button>
<button id="merge">Merge Sort</button>
<button id="quick">Quick Sort</button>
<div id="bar"></div>
<script src="scripts/sorting.js"></script>
<script src="scripts/bubble.js"></script>
<script src="scripts/selection.js"></script>
<script src="scripts/insertion.js"></script>
<script src="scripts/merge.js"></script>
<script src="scripts/quick.js"></script>
</body>
</html>