album/webapp/editor.html
knut b64197e669 Canvas version of editor.
Cosmetic changes.
2008-03-02 20:10:03 +00:00

27 lines
599 B
HTML

<html>
<head>
<title>Editor</title>
<script type="application/x-javascript" src="editor.js">
</script>
<style type="text/css">
img { display:none; }
</style>
</head>
<body style="margin-left: 0 px; margin-top: 0 px;" onload="draw();">
<img src="../photos/forkalsrud-ca-1951.jpg" id="photo">
<canvas id="photoarea" width="800" height="600"></canvas><br/>
<div>
<label id="locationx"></label>, <label id="locationy"></label>
</div>
<address>
<a href="mailto:knut@forkalsrud.org">Knut</a>
</address>
<script type='application/x-javascript'>
initialize();
draw();
</script>
</body>
</html>