<!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(130, 94);

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

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

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

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

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

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

context.lineTo(352, 120);
context.stroke();

context.lineTo(365, 135);
context.stroke();

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

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

context.lineTo(354, 260);
context.stroke();

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

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

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

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

context.lineTo(316, 332);
context.stroke();

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

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

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

context.lineTo(318, 358);
context.stroke();

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

context.lineTo(347, 353);
context.stroke();

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

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

context.lineTo(424, 344);
context.stroke();

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

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

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

context.lineTo(470, 295);
context.stroke();

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

context.lineTo(472, 281);
context.stroke();

context.lineTo(472, 281);
context.stroke();
</script>
</body>
</html>