-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (37 loc) · 1.2 KB
/
index.html
File metadata and controls
43 lines (37 loc) · 1.2 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
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Sorting Algorithm Visualizer</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<h1>Sorting Algorithm Visualizer</h1>
<div class="controls">
<label for="algorithm">Choose Algorithm:</label>
<select id="algorithm">
<option value="bubble">Bubble Sort</option>
<option value="selection">Selection Sort</option>
<option value="insertion">Insertion Sort</option>
<option value="merge">Merge Sort</option>
<option value="quick">Quick Sort</option>
<option value="heap">Heap Sort</option>
</select>
<input
type="text"
id="user-input"
placeholder="Enter numbers (e.g. 23,12,45)"
style="width: 300px;"
/>
<button onclick="generateArray()">Generate Array</button>
<button onclick="sort()">Sort</button>
<button onclick="stopSort()">Stop</button>
<label for="speed">Speed:
<input type="range" id="speed" min="10" max="500" value="100" />
</label>
</div>
<div id="bars-container"></div>
<script type="module" src="main.js"></script>
</body>
</html>