28 lines
599 B
HTML
28 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>
|