<!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(22, 210);

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

context.lineTo(26, 208);
context.stroke();

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

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

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

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

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

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

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

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

context.lineTo(140, 169);
context.stroke();

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

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

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

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

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

context.lineTo(216, 213);
context.stroke();

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

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

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

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

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

context.lineTo(293, 246);
context.stroke();

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

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

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

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

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

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

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

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

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

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

context.lineTo(521, 236);
context.stroke();

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

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

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

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

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

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

context.lineTo(544, 216);
context.stroke();

context.lineTo(544, 216);
context.stroke();

context.lineTo(544, 216);
context.stroke();
</script>
</body>
</html>