<!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(222, 159);

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

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

context.lineTo(349, 388);
context.stroke();

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

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

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

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

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

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

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

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

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

context.lineTo(428, 247);
context.stroke();

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

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

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

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

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

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

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

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

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

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

context.lineTo(96, 216);
context.stroke();

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

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

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

context.lineTo(84, 244);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(106, 131);

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