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

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

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

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

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

context.lineTo(54, 86);
context.stroke();

context.lineTo(62, 76);
context.stroke();

context.lineTo(68, 72);
context.stroke();

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

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

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

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

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

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

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

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

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

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

context.lineTo(153, 110);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(115, 163);
context.stroke();
</script>
</body>
</html>