<!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(131, 86);

context.lineTo(131, 88);
context.stroke();

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

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

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

context.lineTo(77, 175);
context.stroke();

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

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

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

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

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

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

context.lineTo(156, 164);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(415, 181);
context.stroke();
</script>
</body>
</html>