<!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(189, 227);

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(295, 241);
context.stroke();

context.lineTo(297, 239);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(299, 196);
context.stroke();

context.lineTo(299, 196);
context.stroke();
</script>
</body>
</html>