<!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(275, 136);

context.lineTo(279, 136);
context.stroke();

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

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

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

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

context.lineTo(395, 124);
context.stroke();

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

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

context.lineTo(398, 151);
context.stroke();

context.lineTo(395, 172);
context.stroke();

context.lineTo(388, 180);
context.stroke();

context.lineTo(379, 187);
context.stroke();

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

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

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

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

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

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

context.lineTo(293, 179);
context.stroke();

context.lineTo(293, 172);
context.stroke();

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

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

context.lineTo(305, 168);
context.stroke();

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

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

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

context.lineTo(260, 214);
context.stroke();

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

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

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

context.lineTo(239, 183);
context.stroke();

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

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

context.lineTo(257, 183);
context.stroke();

context.lineTo(267, 186);
context.stroke();

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

context.lineTo(281, 204);
context.stroke();

context.lineTo(281, 209);
context.stroke();

context.lineTo(279, 215);
context.stroke();

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

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

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

context.lineTo(205, 219);
context.stroke();

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

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

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

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

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

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

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

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