<!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(125, 41);

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

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

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

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

context.lineTo(271, 105);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(366, 212);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(302, 176);
context.stroke();
</script>
</body>
</html>