-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (38 loc) · 1.3 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sorting-Visualiser</title>
</head>
<body>
<div class="array-container"></div>
<footer>
<nav>
<div class="sorting-buttons">
<button class="reset">
Re-Set the array
</button>
<input type="range" class="myRange" value="150" min="50" max="225" step="25">
<button class="selection-btn">
Selection Sort
</button>
<button class="bubble-btn">
Bubble Sort
</button>
<button class="insertion-btn" >
Insertion Sort
</button>
<button class="quick-btn">
Quick Sort
</button>
<button class="merge-btn">
Merge Sort
</button>
</div>
</nav>
</footer>
<script src="app.js" ></script>
<link href="styles.css" rel="stylesheet"/>
</body>
</html>