-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (28 loc) · 981 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
29
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css" />
<title>Sorting Algorithms</title>
</head>
<body>
<div class="title">
<h1>Sorting Algorithms Visualizer</h1>
<h3>Easy to visualize and understand the sorting Algorithms with Sound Effects!</h3>
</div>
<div>
<button class="button" type="button" onclick="init()"><span>New Array elements</span></button> <br>
</div>
<div id="container"></div>
<hr>
<div class=>
<button class="button" type="button" onclick="play()"><span>Bubble Sort</span></button>
</div>
<script src="script.js"></script>
<script src="sorting_algo/bubbleSort.js"></script>
<script src="animations/playNote.js"></script>
<script src="animations/moveAnimation.js"></script>
<script src="animations/showBars.js"></script>
</body>
</html>