<!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(126, 170);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(143, 219);
context.stroke();

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

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

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

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

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

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

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

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

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

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

context.lineTo(471, 284);
context.stroke();

context.lineTo(475, 268);
context.stroke();

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

context.lineTo(484, 256);
context.stroke();
</script>
</body>
</html>