<!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(231, 123);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(272, 286);
context.stroke();

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

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

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

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

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

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

context.lineTo(404, 286);
context.stroke();

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

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

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

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

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

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

context.lineTo(420, 141);
context.stroke();

context.lineTo(411, 129);
context.stroke();

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

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

context.lineTo(346, 97);
context.stroke();

context.lineTo(318, 94);
context.stroke();

context.lineTo(290, 94);
context.stroke();

context.lineTo(264, 95);
context.stroke();

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

context.lineTo(238, 101);
context.stroke();

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

context.lineTo(222, 107);
context.stroke();

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

context.lineTo(221, 108);
context.stroke();
</script>
</body>
</html>