-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (45 loc) · 1.24 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<html lang="en">
<head>
<title>Generative Lines</title>
<link href="./style.css" rel="stylesheet">
<script
src="./script.js"
type="module"
></script>
</head>
<body>
<div class="container">
<canvas id="canvas"></canvas>
<div
id="controls"
class="controls hidden"
></div>
<div id="actions" class="actions hidden">
<div>
<button
type="button"
id="reroll"
>
reroll
</button>
<button
type="button"
id="replay"
>
replay
</button>
<button
type="button"
id="download"
>
download
</button>
</div>
<div>
<p>All downloads of “Generative Lines” by <a href="https://github.com/barthy-koeln" target="_blank">Barthélémy Bonhomme</a> are licensed under <a href="https://creativecommons.org/licenses/by/4.0/" target="_blank" rel="nofollow noopener">CC BY 4.0</a>.</p>
<p>Contact me if you use it, I'd love to see what you do!</p>
</div>
</div>
</div>
</body>
</html>