-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (27 loc) · 1.38 KB
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Sorting Visualizer</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Fjalla+One&family=Lato:wght@400;700&family=Montserrat:wght@400;500&family=Roboto+Mono&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles/index.css" />
</head>
<body>
<h1>Sorting Visualizer</h1>
<main class="grid-container">
<a class="grid-item" href="/sorting/shell.html"><span>Shell Sort</span></a>
<a class="grid-item" href="/sorting/cycle.html"><span>Cycle Sort</span></a>
<a class="grid-item" href="/sorting/comb.html"><span>Comb Sort</span></a>
<a class="grid-item" href="sorting/bubble.html"><span>Bubble Sort</span></a>
<a class="grid-item" href="sorting/insertion.html"><span>Insertion Sort</span></a>
<a class="grid-item" href="sorting/selection.html"><span>Selection Sort</span></a>
</main>
<script src="scripts/index.js"></script>
</body>
</html>