38 lines
685 B
HTML
38 lines
685 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>WFTDA 2010 Track</title>
|
|
<script type="text/javascript" src="track.js"></script>
|
|
<style type="text/css">
|
|
html {
|
|
background: black;
|
|
text-align: center;
|
|
color: white;
|
|
}
|
|
html, body, canvas {
|
|
padding: 0;
|
|
margin: 0;
|
|
border: 0;
|
|
}
|
|
#link {
|
|
color: #8c8;
|
|
position: absolute;
|
|
left: 1em;
|
|
top: 1em;
|
|
}
|
|
#debug {
|
|
position: absolute;
|
|
bottom: 1em;
|
|
right: 1em;
|
|
background-color: rgba(0, 0, 0, 0.7);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p id="debug"></p>
|
|
<canvas id="canvas"></canvas>
|
|
<a id="link" href="#">link to this position</a>
|
|
</body>
|
|
</html>
|
|
|