<!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(64, 106);

context.lineTo(64, 108);
context.stroke();

context.lineTo(64, 111);
context.stroke();

context.lineTo(66, 121);
context.stroke();

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

context.lineTo(69, 151);
context.stroke();

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

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

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

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

context.lineTo(90, 198);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(375, 111);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(509, 118);
context.stroke();
</script>
</body>
</html>