<!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(138, 95);

context.lineTo(138, 95);
context.stroke();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(141, 55);

context.lineTo(143, 60);
context.stroke();

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

context.lineTo(151, 73);
context.stroke();

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

context.lineTo(160, 90);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(275, 259);
context.stroke();
</script>
</body>
</html>