<!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(140, 94);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(216, 330);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(319, 238);
context.stroke();
</script>
</body>
</html>