-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (29 loc) · 1.13 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
<!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="styles/styles.css">
</head>
<body>
<header>
<h1>Sorting Visualizer</h1>
<div>
<select onchange="setSortingType(this.value)" name="sorting_type">
<option value="bubble">Bubble Sort</option>
<option value="selection">Selection Sort</option>
<option selected value="insertion">Insertion Sort</option>
</select>
<!-- <input class="header_right" id="total_elements" onchange="addNodes(this)" name="elements" placeholder="Number of Elements" /> -->
<input id="totalNodes" class="slider" onchange="addNodes(this.value)" type="range" min="5" max="100" value="50">
</div>
</header>
<div class="main">
<div id="sorting_box"></div>
<button hidden onclick="sort()">Sort</button>
</div>
<script src="scripts/main.js"></script>
</body>
</html>