-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathh.html
33 lines (28 loc) · 823 Bytes
/
h.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
<html>
<head>
<link href="s.css" rel="stylesheet" />
</head>
<body>
<header id="header">
<label> sorting Visualiszer </label>
</header>
<hr>
<div class="bar-container">
<!-- <div class="bar" id="b1"></div> -->
</div>
<div class="controls">
<select id="algo-selector">
<option selected disabled default> Choose Algo</option>
<option value="selection">SelectionSort </option>
<option value="insertion">InsertionSort </option>
<option value="bubble">BubbleSort </option>
</select>
<button onclick="generate()"> Generate Random Array</button>
<button onclick="run()">Play</button>
</div>
<footer>
<!-- details -->
</footer>
</body>
<script src="h1.js"></script>
</html>