-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (24 loc) · 851 Bytes
/
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>Visualization of sorting algorithms</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<label for="num">Number of bars</label>
<input type="number" min="50" value="150" id="num" class="num_input">
<label for="speed">Delay per step(ms)</label>
<input type="number" min="1" value="50" id="speed" class="num_input">
<button class="btn" id="randomize">Randomize</button>
<button class="btn" id="bubble_sort">Bubble Sort</button>
<button class="btn stop">Stop</button>
<center>
<div class="container">
</div>
</center>
<script src="script.js"></script>
</body>
</html>