<!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(80.5, 95);
context.scale(0.85, 1);
context.beginPath();
context.arc(0, 0, 79, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(167, 147);

context.lineTo(167, 148);
context.stroke();

context.lineTo(167, 150);
context.stroke();

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

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

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

context.lineTo(167, 155);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(175, 155);
context.stroke();

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

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

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

context.lineTo(175, 151);
context.stroke();

context.lineTo(175, 150);
context.stroke();

context.lineTo(175, 149);
context.stroke();

context.lineTo(175, 148);
context.stroke();

context.lineTo(174, 148);
context.stroke();

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

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

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

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

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

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

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

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

context.lineTo(167, 148);
context.stroke();

context.lineTo(167, 149);
context.stroke();

context.lineTo(167, 150);
context.stroke();

context.lineTo(167, 151);
context.stroke();

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

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

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

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

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

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

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(209, 21);
context.lineTo(242, 21);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(225, 21);
context.lineTo(225, 166);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(210, 166);
context.lineTo(239, 167);
context.stroke();
context.closePath();
</script>
</body>
</html>