-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (22 loc) · 747 Bytes
/
index.html
File metadata and controls
22 lines (22 loc) · 747 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang=en>
<head>
<meta charset=utf-8>
<title>Sort Demo</title>
<link rel=stylesheet href=default.css>
<script async defer src=script.js></script>
</head>
<body>
<canvas id=sortView height=1000 width=1000></canvas>
<div id=controller style=display:none>
<button id=init>Initialize Array</button>
<button id=shuffle>Shuffle</button>
<button id=bubble>Bubble Sort</button>
<button id=merge>Merge Sort</button>
<button id=insertion>Insertion Sort</button>
<button id=doNothing>Do Nothing 🚫</button>
<button id=enableSound>Enable Sound 🔔</button>
<button id=disableSound style=display:none>Disable Sound 🔕</button>
</div>
</body>
</html>