<!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(118, 145, 287, 115);

context.strokeStyle = '#000000';
context.save();
context.translate(210, 138);
context.scale(1, 0.9824561403508771);
context.beginPath();
context.arc(0, 0, 160, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#FFFFFF';
context.beginPath();
context.moveTo(96, 49);

context.lineTo(94, 49);
context.stroke();

context.lineTo(92, 47);
context.stroke();

context.lineTo(91, 46);
context.stroke();

context.lineTo(90, 45);
context.stroke();

context.lineTo(87, 44);
context.stroke();

context.lineTo(75, 46);
context.stroke();

context.lineTo(59, 52);
context.stroke();

context.lineTo(44, 63);
context.stroke();

context.lineTo(37, 70);
context.stroke();

context.lineTo(36, 71);
context.stroke();

context.lineTo(37, 70);
context.stroke();

context.lineTo(46, 60);
context.stroke();

context.lineTo(52, 57);
context.stroke();

context.lineTo(78, 48);
context.stroke();

context.lineTo(91, 47);
context.stroke();

context.lineTo(91, 48);
context.stroke();

context.lineTo(88, 53);
context.stroke();

context.lineTo(83, 56);
context.stroke();

context.lineTo(77, 59);
context.stroke();

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

context.lineTo(68, 63);
context.stroke();

context.lineTo(67, 63);
context.stroke();

context.lineTo(70, 61);
context.stroke();

context.lineTo(78, 57);
context.stroke();

context.lineTo(82, 57);
context.stroke();

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

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

context.lineTo(80, 65);
context.stroke();

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

context.lineTo(63, 78);
context.stroke();

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

context.lineTo(47, 87);
context.stroke();

context.lineTo(46, 88);
context.stroke();

context.lineTo(46, 86);
context.stroke();

context.lineTo(50, 82);
context.stroke();

context.lineTo(60, 77);
context.stroke();

context.lineTo(77, 69);
context.stroke();

context.lineTo(84, 68);
context.stroke();

context.lineTo(84, 69);
context.stroke();

context.lineTo(76, 74);
context.stroke();

context.lineTo(70, 78);
context.stroke();

context.lineTo(66, 80);
context.stroke();

context.lineTo(66, 78);
context.stroke();

context.lineTo(74, 68);
context.stroke();
</script>
</body>
</html>