-
Notifications
You must be signed in to change notification settings - Fork 26
/
index.html
46 lines (46 loc) · 946 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<html>
<head>
<meta name="viewport" content="initial-scale=0.75,maximum-scale=0.75"/>
<title>Tree thing</title>
<style>
* {
font-family: monospace;
z-index: 10;
}
body {
margin: 0;
padding: 0;
border: 0;
background-color: black;
}
canvas {
width: 100%;
height: 100%;
z-index: 8;
}
span {
color: white;
}
a {
color: white;
}
div {
position: absolute;
top: 0;
bottom: 0;
width: 330;
height: 370;
border-color: white;
border-width: 2;
border-style: solid;
background-color: rgba(0, 0, 0, 0.8);
z-index: 9;
}
</style>
</head>
<body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.6/p5.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.6/addons/p5.dom.min.js"></script>
<script src="main.js"></script>
</body>
</html>