<!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(89, 65);
context.scale(1, 0.9230769230769231);
context.beginPath();
context.arc(0, 0, 35, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(131, 80);
context.lineTo(322, 194);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.save();
context.translate(340.5, 202);
context.scale(0.875, 1);
context.beginPath();
context.arc(0, 0, 32, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(321, 193);
context.stroke();
</script>
</body>
</html>