<!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(131, 122);

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

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

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

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

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

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

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

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

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

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

context.lineTo(218, 186);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(240, 218);
context.stroke();

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

context.lineTo(274, 242);
context.stroke();

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

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

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

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

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

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

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

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

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

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

context.lineTo(440, 195);
context.stroke();

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

context.lineTo(441, 192);
context.stroke();

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