-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (28 loc) · 785 Bytes
/
index.html
File metadata and controls
29 lines (28 loc) · 785 Bytes
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 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>Data Structures and Algorithms in the Wild - Demos</title>
<style>
body,
html {
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
line-height: 1.4;
font-size: 14px;
}
* {
box-sizing: border-box;
}
</style>
</head>
<body>
<h1>DSAW - Demos</h1>
<ul>
<li><a href="quadtrees/demos/index.html">Quadtrees</a></li>
<li><a href="tries/demos/index.html">Tries</a></li>
</ul>
</body>
</html>