diff options
| author | Tim Redfern <tim@eclectronics.org> | 2012-01-08 12:30:32 +0000 |
|---|---|---|
| committer | Tim Redfern <tim@eclectronics.org> | 2012-01-08 12:30:32 +0000 |
| commit | 68f0c8ed8283cff46133eb798c24afabae2cfca2 (patch) | |
| tree | 176289ad489b35a0aef786d3702ae873ce6a3c61 /test/index.html | |
first commit
Diffstat (limited to 'test/index.html')
| -rw-r--r-- | test/index.html | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/test/index.html b/test/index.html new file mode 100644 index 0000000..daa3012 --- /dev/null +++ b/test/index.html @@ -0,0 +1,38 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> +<html lang="en"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> + <title>Netchasketch</title> + <style type="text/css" media="screen"> + body { + background: #333; + color: #fff; + font: 300 100.1% "Helvetica Neue", Helvetica, "Arial Unicode MS", Arial, sans-serif; + } + #canvas { + height: 300px; + left: 50%; + margin: -150px 0 0 -300px; + position: absolute; + top: 50%; + width: 600px; + } + #paper { + height: 300px; + left: 0; + position: absolute; + top: 0; + width: 300px; + } + h2 { + text-align: center; + } + </style> + <script src="processing-min.js"></script> + </head> + <body> + <div id="canvas"> + <div id="paper"><canvas data-processing-sources="netchasketch.pde"></canvas></div> + </div> + </body> +</html>
\ No newline at end of file |
