-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
42 lines (39 loc) · 1.11 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Algorithm Visualiser</title>
<link href="https://fonts.googleapis.com/css?family=Lato&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<a class="toggle-drawer open" href="#nav">Menu</a>
<h1>Algorithm Visualiser</h1>
</header>
<nav id="nav">
<a href="#" class="toggle-drawer close">×</a>
<ul>
<li>Linear search</li>
<li>Binary search</li>
<li>Bubble sort</li>
<li>Selection sort</li>
<li>Insertion sort</li>
</ul>
</nav>
<main>
<p>This project is an attempt to visualise different algorithms.
It was made for the web using <a href="https://p5js.org">p5.js</a>
</p>
<p>The project development has just started,
so most of the algorithm visualisations do not exist yet.
The project is actively being developed.
</p>
</main>
<footer>
<p>Other projects</p>
</footer>
</body>
</html>