<!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(293, 41);
context.lineTo(18, 466);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(292, 37);
context.lineTo(584, 469);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(20, 466);
context.lineTo(583, 468);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(297, 283);

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(217, 265);

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(220, 367);

context.lineTo(220, 367);
context.stroke();

context.strokeStyle = '#000000';
context.save();
context.translate(294.5, 320);
context.scale(1, 0.7633587786259542);
context.beginPath();
context.arc(0, 0, 165, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.strokeRect(192, 226, 198, 188);

context.strokeStyle = '#000000';
context.save();
context.translate(283, 334);
context.scale(1, 0.84375);
context.beginPath();
context.arc(0, 0, 84, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(229, 369);
context.lineTo(280, 290);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(231, 366);
context.lineTo(327, 368);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(278, 288);
context.lineTo(326, 367);
context.stroke();
context.closePath();
</script>
</body>
</html>