-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (29 loc) · 872 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/svg+xml" href="/assets/ba_logo.svg" />
<title>Quicksort | Algorithm Visualization</title>
<script src="p5.js"></script>
<script src="sketch.js"></script>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<main></main>
<footer>
<div>
<h4>Quicksort</h4>
<h6>Algorithm Visualization</h6>
<small
>Created by
<a href="https://linktr.ee/oortsky" target="_blank">BayuAprio.</a>
<span
>& tutor by
<a href="https://youtube.com/@TheCodingTrain">The Coding Train</a>
</span></small
>
</div>
</footer>
</body>
</html>