<!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, 100);

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

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

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

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

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

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

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

context.lineTo(315, 131);
context.stroke();

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

context.lineTo(397, 137);
context.stroke();

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

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

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

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

context.lineTo(531, 179);
context.stroke();

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

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

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

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

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

context.lineTo(521, 262);
context.stroke();

context.lineTo(499, 276);
context.stroke();

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

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

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

context.lineTo(385, 307);
context.stroke();

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

context.lineTo(290, 307);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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