-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (27 loc) · 1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sorting-Visualizer!</title>
<link rel="stylesheet" href="/sorting-visualizer/style.css"
</head>
<body id = "main">
<h1 id = "title">Sort Visualizer</h1>
<div id = "inputs">
<div class = "sorting-algo-btns">
<button id = "insertionsort">Insertion Sort</button>
<button id = "selectionsort">Selection Sort</button>
<button id = "mergesort">Merge Sort</button>
<button id = "bubblesort">Button Sort</button>
<div class="input-array">
<input type="range" min="10" max="1000" value="100" class="slider" id="myRange" onchange="setSize(this.value)">
</div>
<div class="waittime"></div>
<input type="range" min="100" max="5000" value="500" class="slider" id="myRange" onchange="setWaitTime(this.value)">
</div>
<div class = "array"></div>
<script src="app.js"></script>
</body>
</html>