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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(303, 195);
context.stroke();

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

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

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

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

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

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

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

context.lineTo(340, 261);
context.stroke();

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

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

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

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

context.lineTo(333, 282);
context.stroke();

context.lineTo(328, 289);
context.stroke();

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

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

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

context.lineTo(276, 301);
context.stroke();

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

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

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

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

context.lineTo(205, 283);
context.stroke();

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

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

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

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

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

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

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

context.lineTo(188, 271);
context.stroke();
</script>
</body>
</html>