-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (48 loc) · 1.32 KB
/
Copy pathindex.html
File metadata and controls
54 lines (48 loc) · 1.32 KB
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
53
54
<!doctype html>
<html lang="en">
<head>
<title>ROSÓŁ</title>
<meta charset="utf8" />
<style>
* {
margin: 0;
padding: 0;
}
noscript {
color: white;
}
body {
align-items: center;
background-color: #ffe5eb;
display: flex;
justify-content: center;
min-height: 100vh;
width: 100%;
}
main {
align-items: center;
background-color: black;
display: flex;
justify-content: center;
min-height: 100vh;
width: 100%;
}
#rosol {
border: 1px solid white;
image-rendering: pixelated;
}
</style>
</head>
<body>
<main>
<noscript>
You need to enable JavaScript in order to use this application.
</noscript>
<canvas id="rosol"></canvas>
</main>
<script src="./src/color.js"></script>
<script src="./src/helpers.js"></script>
<script src="./src/texture.js"></script>
<script src="./src/rosol.js"></script>
</body>
</html>