-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (22 loc) · 793 Bytes
/
index.html
File metadata and controls
22 lines (22 loc) · 793 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Search Visualization Index</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="index-container">
<h1>Search Visualization</h1>
<p>Select a search method to visualize:</p>
<div class="index-links">
<a href="binarySearch.html" class="btn-link">Binary Search Visualization</a>
<a href="linearSearch.html" class="btn-link">Linear Search Visualization</a>
<a href="bPlusTree.html" class="btn-link">B+ Tree Visualization</a>
<a href="redBlackTree.html" class="btn-link">Red-Black Tree Visualization</a>
<a href="snake.html" class="btn-link">SNAKE</a>
<a href="2048.html" class="btn-link">2048</a>
</div>
</div>
</body>
</html>