-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (29 loc) · 929 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>
<link rel="shortcut icon" href="images/titleLogo.png" />
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="generator.js"></script>
<link rel="stylesheet" type="text/css" href="styles.css" />
<title>Fractals Everywhere</title>
</head>
<body>
<div id="canvas-container">
<canvas id="mycanvas" width="501" height="501">
Your browser doesn't support canvas
</canvas>
</div>
<div id = "options">
<select onchange="trigger(this.value)" class="decorated">
<option value="1">Barsley Fern</option>
<option value="2">Sierpinski Triangle</option>
<option value="3">Cyclosorus</option>
<option value="4">Modified Barsley Fern</option>
<option value="5">Culcita</option>
<option value="6">The Golden Bee</option>
<option value="7">A Fractal Tree</option>
<option value="8">Fishbone</option>
</select>
</div>
</body>
</html>