<!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(88, 140);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(355, 204);
context.stroke();
</script>
</body>
</html>