<!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(259.5, 222);
context.scale(1, 0.9454545454545454);
context.beginPath();
context.arc(0, 0, 76, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(227.5, 191.5);
context.scale(1, 1);
context.beginPath();
context.arc(0, 0, 1, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#FFFFFF';
context.beginPath();
context.moveTo(236, 188);

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

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

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

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

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

context.lineTo(229, 189);
context.stroke();

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

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

context.lineTo(227, 190);
context.stroke();

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

context.lineTo(225, 193);
context.stroke();

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

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

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

context.strokeStyle = '#FFFFFF';
context.beginPath();
context.moveTo(225, 195);

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

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

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

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

context.lineTo(230, 197);
context.stroke();

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

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

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

context.lineTo(230, 193);
context.stroke();

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

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

context.lineTo(230, 190);
context.stroke();

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

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

context.lineTo(233, 189);
context.stroke();

context.lineTo(233, 190);
context.stroke();

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

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

context.lineTo(233, 194);
context.stroke();
</script>
</body>
</html>