-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsorting.html
38 lines (38 loc) · 1.33 KB
/
sorting.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
34
35
36
37
38
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initail-scale=1.0">
<title>Sorting Algorithms | Glory42</title>
<link rel="stylesheet" href="css/style.css">
<link href="https://fonts.googleapis.com/css2?family=Dosis:wght@400;600&display=swap" rel="stylesheet">
</head>
<body>
<header>
<h1>Sorting Algorithms</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="pathfinding.html">Pathfinding Algorithms</a></li>
</ul>
</nav>
</header>
<main>
<div class="container">
<div class="controls">
<label for="algorithm">Choose an Algorithm</label>
<select id="algorithm">
<option value="bubble">Bubble Sort</option>
<option value="quick">Quick Sort</option>
</select>
<label for="speed">Speed:</label>
<input type="range" id="speed" min="10" max="500" value="50">
<button id="start-btn">Start</button>
<button id="reset-btn">Reset</button>
</div>
<canvas id="visualizer" width="800" height="400"></canvas>
</div>
</main>
<script src="js/sortingAlgs.js"></script>
</body>
</html>