<!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(31, 55);

context.lineTo(32, 55);
context.stroke();

context.lineTo(35, 57);
context.stroke();

context.lineTo(38, 60);
context.stroke();

context.lineTo(40, 62);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(279, 252);
context.stroke();

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

context.lineTo(330, 303);
context.stroke();

context.lineTo(341, 313);
context.stroke();

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

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

context.lineTo(360, 333);
context.stroke();

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

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

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

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

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

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