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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(256, 126);
context.stroke();

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

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

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

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

context.lineTo(306, 152);
context.stroke();

context.lineTo(317, 158);
context.stroke();

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

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

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

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

context.lineTo(365, 200);
context.stroke();

context.lineTo(372, 206);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(398, 227);
context.stroke();

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

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

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

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