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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(321, 130);
context.stroke();

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

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

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

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

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

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

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

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

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

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

context.lineTo(126, 170);
context.stroke();

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

context.lineTo(124, 142);
context.stroke();

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

context.lineTo(137, 114);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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