<!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(139, 117);

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

context.lineTo(155, 150);
context.stroke();

context.lineTo(159, 157);
context.stroke();

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

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

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

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

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

context.lineTo(211, 221);
context.stroke();

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

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

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

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

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

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

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

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

context.lineTo(269, 253);
context.stroke();

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

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

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

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

context.lineTo(308, 269);
context.stroke();

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

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

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

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

context.lineTo(339, 269);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(306, 157);
context.stroke();
</script>
</body>
</html>