<!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(105, 145);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(267, 266);
context.stroke();

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

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

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

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

context.lineTo(341, 272);
context.stroke();

context.lineTo(368, 278);
context.stroke();

context.lineTo(384, 277);
context.stroke();

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

context.lineTo(412, 280);
context.stroke();

context.lineTo(419, 280);
context.stroke();

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

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

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

context.lineTo(461, 266);
context.stroke();

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

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

context.lineTo(470, 240);
context.stroke();

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

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

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

context.lineTo(478, 224);
context.stroke();

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

context.lineTo(483, 214);
context.stroke();

context.lineTo(483, 214);
context.stroke();
</script>
</body>
</html>