<!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.strokeRect(90, 93, 161, 182);

context.strokeStyle = '#000000';
context.save();
context.translate(181.5, 61);
context.scale(0.7954545454545454, 1);
context.beginPath();
context.arc(0, 0, 56, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(242, 63.5);
context.scale(1, 0.5);
context.beginPath();
context.arc(0, 0, 47, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(287, 72);

context.lineTo(288, 72);
context.stroke();

context.lineTo(288, 73);
context.stroke();

context.lineTo(294, 79);
context.stroke();

context.lineTo(300, 85);
context.stroke();

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

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

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

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

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

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

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

context.lineTo(364, 138);
context.stroke();

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

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

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

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

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

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

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

context.lineTo(419, 165);
context.stroke();

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

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

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

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

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

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

context.lineTo(440, 143);
context.stroke();

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

context.lineTo(440, 127);
context.stroke();

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

context.lineTo(438, 116);
context.stroke();

context.lineTo(436, 113);
context.stroke();

context.lineTo(435, 112);
context.stroke();

context.lineTo(436, 112);
context.stroke();
</script>
</body>
</html>