<!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(185, 243);

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

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

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

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

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

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

context.lineTo(385, 279);
context.stroke();

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

context.lineTo(65, 268);
context.stroke();

context.lineTo(61, 287);
context.stroke();

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

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

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

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

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

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

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

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

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

context.lineTo(233, 292);
context.stroke();

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

context.lineTo(327, 305);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(489, 111);
context.stroke();

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

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

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

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

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

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

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

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

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

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

context.lineTo(565, 152);
context.stroke();

context.lineTo(565, 157);
context.stroke();

context.lineTo(575, 184);
context.stroke();

context.lineTo(592, 211);
context.stroke();
</script>
</body>
</html>