-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSearchAndSortVisualizer.html
More file actions
30 lines (30 loc) · 1.06 KB
/
Copy pathSearchAndSortVisualizer.html
File metadata and controls
30 lines (30 loc) · 1.06 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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<meta name="author" content="Kaleb Kohn">
<title>Search and Sort Visualizer</title>
<link rel="stylesheet" href="SearchAndSortVisualizer.css">
<script src="SearchAndSortVisualizer.js"></script>
</head>
<body>
<div class="headersection">
<h1 style="text-align: center;">Search and Sort Visualizer</h1>
<div class="subtitles">
<h3>Search Algorithms</h3>
<h3>Length of List</h3>
<h3>Sort Algorithms</h3>
</div>
<div class="buttons">
<button>Binary Search</button>
<div style="float:right;">
<button onclick="insertionSort()">Insertion Sort</button>
<button onclick="selectionSort()">Selection Sort</button>
<button>Merge Sort</button>
</div>
</div>
</div>
<div id="list" style="text-align: center;">
</div>
</body>
</html>