<!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(220, 94);

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(129, 311);
context.stroke();

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

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

context.lineTo(232, 352);
context.stroke();

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

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

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

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

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

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

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

context.lineTo(389, 218);
context.stroke();

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

context.lineTo(372, 141);
context.stroke();

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

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

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

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

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

context.lineTo(324, 44);
context.stroke();

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

context.lineTo(310, 37);
context.stroke();

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

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

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

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

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

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

context.lineTo(241, 59);
context.stroke();

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

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

context.lineTo(223, 73);
context.stroke();

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

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

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

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

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

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

context.lineTo(192, 106);
context.stroke();
</script>
</body>
</html>