<!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(85, 101);

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

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(114, 87);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(207, 185);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(447, 215);
context.stroke();

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

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

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

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

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

context.lineTo(435, 275);
context.stroke();

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

context.lineTo(434, 318);
context.stroke();

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

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

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

context.lineTo(442, 351);
context.stroke();

context.lineTo(445, 354);
context.stroke();

context.lineTo(446, 357);
context.stroke();

context.lineTo(446, 358);
context.stroke();

context.lineTo(446, 358);
context.stroke();
</script>
</body>
</html>