-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (36 loc) · 773 Bytes
/
index.html
File metadata and controls
36 lines (36 loc) · 773 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
33
34
35
36
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>☞Stringbot☜</title>
<script src="processing-0.9.6.js"></script>
<style type="text/css" media="screen">
body {
background-color: #000000;
}
p#title {
color: #DEDEDE;
margin-top: 5em;
font-family: Georgia;
font-size: 32pt;
}
canvas#anim {
position:absolute;
top:0px;
left:0px;
border: 2px solid #0F0F0F;
float: left;
clear: right;
}
#horizon{
text-align: center;
}
</style>
</head>
<body>
<canvas id="anim" datasrc="partysquares.pde"></canvas>
<div id="horizon">
<p id="title">☞ Stringbot ☜</p>
</div>
</body>
</html>