<!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.save();
context.translate(200, 146);
context.scale(1, 0.98);
context.beginPath();
context.arc(0, 0, 140, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(146, 62);
context.lineTo(144, 101);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(246, 63);
context.lineTo(246, 105);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(122, 142);

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

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

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

context.lineTo(129, 161);
context.stroke();

context.lineTo(130, 166);
context.stroke();

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

context.lineTo(134, 176);
context.stroke();

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

context.lineTo(140, 184);
context.stroke();

context.lineTo(144, 188);
context.stroke();

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

context.lineTo(153, 196);
context.stroke();

context.lineTo(156, 200);
context.stroke();

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

context.lineTo(168, 208);
context.stroke();

context.lineTo(171, 211);
context.stroke();

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

context.lineTo(184, 214);
context.stroke();

context.lineTo(188, 215);
context.stroke();

context.lineTo(192, 215);
context.stroke();

context.lineTo(200, 215);
context.stroke();

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

context.lineTo(208, 215);
context.stroke();

context.lineTo(212, 215);
context.stroke();

context.lineTo(214, 214);
context.stroke();

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

context.lineTo(222, 211);
context.stroke();

context.lineTo(228, 208);
context.stroke();

context.lineTo(231, 206);
context.stroke();

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

context.lineTo(240, 202);
context.stroke();

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

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

context.lineTo(246, 199);
context.stroke();

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

context.lineTo(250, 196);
context.stroke();

context.lineTo(252, 196);
context.stroke();

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

context.lineTo(254, 194);
context.stroke();

context.lineTo(256, 192);
context.stroke();

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

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

context.lineTo(261, 184);
context.stroke();

context.lineTo(262, 183);
context.stroke();

context.lineTo(263, 182);
context.stroke();

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

context.lineTo(266, 177);
context.stroke();

context.lineTo(266, 176);
context.stroke();

context.lineTo(269, 169);
context.stroke();

context.lineTo(270, 166);
context.stroke();

context.lineTo(270, 164);
context.stroke();

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

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

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

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

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

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

context.lineTo(272, 156);
context.stroke();
</script>
</body>
</html>