<!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(205, 70);

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

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

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

context.lineTo(211, 74);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(266, 142);
context.stroke();

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

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

context.lineTo(276, 157);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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