-
Notifications
You must be signed in to change notification settings - Fork 247
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (29 loc) · 805 Bytes
/
index.html
File metadata and controls
32 lines (29 loc) · 805 Bytes
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
<!DOCTYPE html>
<html>
<head>
<script src="index.js"></script>
<style>
* {
padding: 0;
margin: 0;
}
.source-code {
position: absolute;
top: 0;
right: 0;
display: block;
background-color: #ff0000;
color: white;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-weight: normal;
padding: 8px;
text-decoration: none;
border-radius: 3px;
}
</style>
</head>
<body onload="run()" style="background:black">
<canvas id="scene" width="500px" height="500px" style="background:black; display: block; margin: 0 auto"></canvas>
<a href="https://github.com/anvaka/atree" class='source-code'>Source code</a>
</body>
</html>