<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Your Canvas</title>

<style type="text/css"><!--
#container { position: relative; }
#imageTemp { position: absolute; top: 1px; left: 1px; }
--></style>

</head>
<body>
<canvas id="imageView" width="600" height="500"></canvas>

<script type="text/javascript">
var canvas, context, canvaso, contexto;
canvaso = document.getElementById('imageView');
context = canvaso.getContext('2d');
context.lineWidth = 5;

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(4, 450);
context.lineTo(2, 1);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(4, 442);
context.lineTo(149, 440);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(149, 436);
context.lineTo(144, 227);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(145, 225);
context.lineTo(506, 222);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(505, 221);
context.lineTo(505, 404);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(506, 400);
context.lineTo(593, 397);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(595, 391);
context.lineTo(597, 4);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.save();
context.translate(302.5, 45);
context.scale(1, 0.7927927927927928);
context.beginPath();
context.arc(0, 0, 142, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.strokeRect(0, 345, 152, 9);

context.strokeStyle = '#000000';
context.strokeRect(11, 269, 133, 7);

context.strokeStyle = '#000000';
context.strokeRect(5, 166, 141, 1);

context.strokeStyle = '#000000';
context.strokeRect(132, 2, 2, 224);

context.strokeStyle = '#000000';
context.strokeRect(135, 37, 25, 25);

context.strokeStyle = '#000000';
context.strokeRect(133, 110, 56, 32);

context.strokeStyle = '#000000';
context.strokeRect(139, 143, 122, 46);

context.strokeStyle = '#000000';
context.strokeRect(267, 152, 103, 28);

context.strokeStyle = '#000000';
context.strokeRect(377, 92, 72, 84);

context.strokeStyle = '#000000';
context.strokeRect(447, 76, 52, 77);
</script>
</body>
</html>