<!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(332, 81);

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

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

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

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

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

context.lineTo(229, 107);
context.stroke();

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

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

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

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

context.lineTo(57, 149);
context.stroke();

context.lineTo(47, 154);
context.stroke();

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

context.lineTo(36, 162);
context.stroke();

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

context.lineTo(33, 169);
context.stroke();

context.lineTo(32, 174);
context.stroke();

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

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

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

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

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

context.lineTo(119, 209);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(337, 124);
context.stroke();
</script>
</body>
</html>