<!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(254, 89);

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

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(207, 91);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(294, 181);
context.stroke();

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

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

context.lineTo(302, 190);
context.stroke();

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

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

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

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

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