<!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(52, 83);

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

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

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

context.lineTo(53, 92);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(165, 245);
context.stroke();

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

context.lineTo(196, 260);
context.stroke();

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

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

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

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

context.lineTo(250, 299);
context.stroke();

context.lineTo(261, 308);
context.stroke();

context.lineTo(269, 316);
context.stroke();

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

context.lineTo(285, 327);
context.stroke();

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

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

context.lineTo(301, 335);
context.stroke();

context.lineTo(305, 335);
context.stroke();

context.lineTo(309, 336);
context.stroke();

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