<!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(42, 119);

context.lineTo(42, 119);
context.stroke();

context.lineTo(43, 120);
context.stroke();

context.lineTo(44, 121);
context.stroke();

context.lineTo(45, 122);
context.stroke();

context.lineTo(51, 124);
context.stroke();

context.lineTo(75, 135);
context.stroke();

context.lineTo(100, 141);
context.stroke();

context.lineTo(125, 147);
context.stroke();

context.lineTo(152, 154);
context.stroke();

context.lineTo(180, 163);
context.stroke();

context.lineTo(204, 172);
context.stroke();

context.lineTo(234, 186);
context.stroke();

context.lineTo(248, 195);
context.stroke();

context.lineTo(255, 201);
context.stroke();

context.lineTo(260, 207);
context.stroke();

context.lineTo(264, 213);
context.stroke();

context.lineTo(267, 221);
context.stroke();

context.lineTo(273, 232);
context.stroke();

context.lineTo(276, 239);
context.stroke();

context.lineTo(279, 243);
context.stroke();

context.lineTo(282, 249);
context.stroke();

context.lineTo(285, 253);
context.stroke();

context.lineTo(289, 258);
context.stroke();

context.lineTo(295, 265);
context.stroke();

context.lineTo(298, 268);
context.stroke();

context.lineTo(301, 271);
context.stroke();

context.lineTo(303, 272);
context.stroke();

context.lineTo(304, 273);
context.stroke();

context.lineTo(304, 274);
context.stroke();

context.lineTo(304, 274);
context.stroke();

context.strokeStyle = '#000000';
context.save();
context.translate(229.5, 211.5);
context.scale(1, 0.7294685990338164);
context.beginPath();
context.arc(0, 0, 256, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(364, 212.5);
context.scale(0.5714285714285714, 1);
context.beginPath();
context.arc(0, 0, 8, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(400.5, 89);
context.scale(0.7321428571428571, 1);
context.beginPath();
context.arc(0, 0, 69, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();
</script>
</body>
</html>