blob: 036e8ace1bcefe0798bb684eb8fbe7d965ddc257 (
plain)
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
|
<!DOCTYPE html>
<html>
<head>
<title>cacharle - sierpinski triangle</title>
<link rel="stylesheet" type="text/css" href="../../style.css"/>
<meta charset="utf-8"/>
<link rel="icon" type="image/png" href="../../favicon.png" />
<style>
.settings {
margin-top: 10px;
display: flex;
justify-content: flex-start;
align-items: center;
}
.settings label {
margin-right: 5px;
}
.settings input {
min-width: 200px;
}
</style>
</head>
<body><div id="page-wrapper">
<h1>sierpinski triangle</h1>
<canvas width="500" height="500" id="sierpinski-triangle"></canvas>
<div class="settings">
<label>depth</label>
<input id="depth" min="1" max="9" value="7" type="range"/>
</div>
</div></body>
<script src="script.js" type="text/javascript"></script>
</html>
|