-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (55 loc) · 2.22 KB
/
index.html
File metadata and controls
64 lines (55 loc) · 2.22 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
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<link rel="stylesheet" href="style.css" type="text/css">
<script src="essentials.js" defer></script>
<script src="sorting_algos.js" defer></script>
<script src="listeners.js" defer></script>
<title>Sorting Simulation</title>
</head>
<body>
<nav class="navbar navbar-expand-sm bg-dark navbar-dark">
<a class="navbar-brand" href="#">Sorting Simulation</a>
<ul class="navbar-nav mr-auto ml-5">
<li class="nav-item">
<select id="sortAlgo">
</select>
</li>
<li class="nav-item mt-1 ml-2">
<button class="btn btn-outline-light mr-2" id="start"><strong>Start Simulation</strong></button>
</li>
</ul>
<ul class="navbar-nav ml-auto">
<li class="nav-item mr-2">
<label><strong>Array Size</strong></label>
<input type="range" id="inputSize" min="4" max="10">
</li>
<li class="nav-item mt-1">
<button class="btn btn-outline-light" id="generate"><strong>Generate new array</strong></button>
</li>
</ul>
</nav>
<div class="container m-5">
<div class="array"></div>
</div>
<div class="container m-5">
<h2>JAVA Code - </h2>
<hr>
<pre class="preview" id="code">
</pre>
</div>
<div>
<footer class="text-center footer-format">
<a href="https://github.com/adityam31/sort-simulation">
<img src="images/GitHub-Mark-Light-32px.png" alt="Github logo">
</a>
<br>
<strong>Made by - <a href="https://github.com/adityam31" target="_blank">Aditya Mahajan</a></strong>
</footer>
</div>
</body>
</html>