<!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(97, 87);

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

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

context.lineTo(101, 146);
context.stroke();

context.lineTo(107, 193);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(123, 99);
context.stroke();

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

context.lineTo(81, 101);
context.stroke();

context.lineTo(76, 100);
context.stroke();

context.lineTo(74, 100);
context.stroke();

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

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

context.lineTo(72, 107);
context.stroke();

context.lineTo(72, 107);
context.stroke();
</script>
</body>
</html>