-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
43 lines (43 loc) · 813 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!doctype html>
<html>
<head>
<title>
Fractal Curves
</title>
<style>
*{
border: none;
margin: 0px;
padding: 0px;
}
body, html{
width: 100%;
height: 100%;
overflow: hidden;
}
body{
font-family: sans-serif;
padding: 20px;
}
h1{
line-height: 60px;
}
a{
text-decoration: none;
font-size: 17px;
margin-left: 5px;
line-height: 30px;
}
</style>
</head>
<body>
<h1>Fancy Fractals</h1>
<a href="./l-systems/">Lindenmayer Systems</a><br />
<br />
<a href="./koch/">Koch Curve</a><br />
<a href="./hilbert/">Hilbert Curve</a><br />
<a href="./sierpinski/">Sierpinski Arrowhead</a><br />
<a href="./flowsnake/">Flowsnake (Peano-Gosper Curve)</a><br />
<a href="./dragon/">Dragon Curve</a><br />
</body>
</html>