<!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, 29);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(370, 413);
context.stroke();

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

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

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

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

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

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

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

context.lineTo(431, 159);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(200, 400);
context.stroke();

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

context.lineTo(225, 402);
context.stroke();
</script>
</body>
</html>