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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(176, 164);
context.stroke();

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

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

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

context.lineTo(315, 213);
context.stroke();

context.lineTo(404, 343);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(491, 239);
context.stroke();

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

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

context.lineTo(563, 109);
context.stroke();

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

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

context.lineTo(508, 144);
context.stroke();

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

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

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

context.lineTo(449, 179);
context.stroke();
</script>
</body>
</html>