-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (53 loc) · 2.06 KB
/
index.html
File metadata and controls
53 lines (53 loc) · 2.06 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
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w=="
crossorigin="anonymous"
/>
<link rel="stylesheet" href="styles/styles.css" />
<title>Sorting Visualizer</title>
</head>
<body>
<section class="mainbody">
<div class="bar-container"></div>
</section>
<footer>
<div class="selection-container">
<select class="algorithms-select">
<option value="" selected disabled hidden>Select an algorithm</option>
<option value="mergeSort">MergeSort</option>
<option value="quickSort">QuickSort</option>
<option value="heapSort">HeapSort</option>
<option value="bubbleSort">BubbleSort</option>
<option value="insertionSort">InsertionSort</option>
<option value="selectionSort">SelectionSort</option>
</select>
</div>
<div class="partition"></div>
<div class="btn-container">
<div class="algo-btn-container">
<button class="run-quicksort">Run QuickSort</button>
<button class="run-mergesort">Run MergeSort</button>
<button class="run-bubblesort">Run BubbleSort</button>
<button class="run-heapsort">Run HeapSort</button>
<button class="run-insertionsort">Run InsertionSort</button>
<button class="run-selectionsort">Run SelectionSort</button>
</div>
<div class="rand-btn-container">
<button class="randomize">Randomize</button>
</div>
</div>
<div class="partition"></div>
<div class="slider-container">
<p>Change number of bars and speed</p>
<input type="range" min="20" max="100" class="slider" id="myRange" />
</div>
</footer>
<script type="module" src="src/app.js"></script>
</body>
</html>