<!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(296, 122);

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

context.lineTo(223, 153);
context.stroke();

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

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

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

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

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

context.lineTo(237, 250);
context.stroke();

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

context.lineTo(264, 271);
context.stroke();

context.lineTo(265, 272);
context.stroke();

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

context.lineTo(220, 286);
context.stroke();

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

context.lineTo(184, 297);
context.stroke();

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

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

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

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

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

context.lineTo(255, 378);
context.stroke();

context.lineTo(256, 378);
context.stroke();

context.lineTo(256, 373);
context.stroke();

context.lineTo(256, 358);
context.stroke();

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

context.lineTo(231, 304);
context.stroke();

context.lineTo(231, 283);
context.stroke();

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

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

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

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

context.lineTo(454, 184);
context.stroke();

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

context.lineTo(520, 154);
context.stroke();

context.lineTo(520, 139);
context.stroke();

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

context.lineTo(516, 121);
context.stroke();

context.lineTo(516, 121);
context.stroke();
</script>
</body>
</html>