<!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(100, 247);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(270, 222);
context.stroke();

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

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

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

context.lineTo(337, 141);
context.stroke();

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

context.lineTo(348, 130);
context.stroke();

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

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

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

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

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

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

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

context.lineTo(376, 106);
context.stroke();
</script>
</body>
</html>