<!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.beginPath();
context.moveTo(50, 148);
context.lineTo(50, 382);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(445, 382);
context.lineTo(48, 379);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(444, 382);
context.lineTo(444, 140);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.save();
context.translate(130.5, 191);
context.scale(1, 0.5269461077844312);
context.beginPath();
context.arc(0, 0, 189, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#FFFFFF';
context.beginPath();
context.moveTo(263, 97);

context.lineTo(263, 98);
context.stroke();

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

context.lineTo(261, 103);
context.stroke();

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

context.lineTo(254, 117);
context.stroke();

context.lineTo(251, 122);
context.stroke();

context.lineTo(249, 126);
context.stroke();

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

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

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

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

context.lineTo(244, 133);
context.stroke();

context.lineTo(244, 133);
context.stroke();

context.strokeStyle = '#FFFFFF';
context.beginPath();
context.moveTo(226, 53);

context.lineTo(226, 55);
context.stroke();

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

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

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

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

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

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

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

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

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

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

context.lineTo(247, 76);
context.stroke();
</script>
</body>
</html>