<!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(72, 65);

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

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

context.lineTo(74, 68);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(298, 211);
context.stroke();

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

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

context.lineTo(363, 167);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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