-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (28 loc) · 882 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<title>Fractal trees</title>
</head>
<body>
<div class="container">
<canvas id="canvas" width="1000" height="800"></canvas>
<div class="controls">
<div class="controls__item">
<label for="angle">Angle</label>
<input type="range" id="angle" min="0" max="250" value="45">
</div>
<div class="controls__item">
<label for="length">Length</label>
<input type="range" id="length" min="0" max="100" value="10">
</div>
<div class="controls__item">
<label for="depth">Depth</label>
<input type="range" id="depth" min="0" max="10" value="5">
</div>
</div>
<script src="js/main.js"></script>
</body>
</html>