-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (33 loc) · 1.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport"
content="width=device-width,initial-scale=1.0">
<meta name="description" content="Iterated Function Systems and L-Systems">
<meta name="keywords" content="IFS,iterated,function system,
Lindenmayer System, L-system">
<meta name="theme-color" content="#00519e" />
<title>Iterated Function Systems and L-Systems</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>L-Systems: Turtle-Visualisation</h1>
</header>
<main>
<div id="pane-navigation" class="pane">
<div class="pane-title"><h2>Navigation</h2></div>
<div class="pane-content">
<h2><a href="barnsley.html" class="luhbluelink">Barnsley Fern</a></h2>
<p>
The Barnsley fern is probably the most popular iterated function system.
Click on the link above to play with the parameters and see the results of your changes on the fly.
</p>
<h2><a href="ls-turtle.html" class="luhbluelink">2D L Systems: A Turtle Demo</a></h2>
</div>
<div class="pane-bottom"></div>
</div>
</div>
</body>
</html>