<!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(94, 200);

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

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

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

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

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

context.lineTo(121, 177);
context.stroke();

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

context.lineTo(164, 167);
context.stroke();

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

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

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

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

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

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

context.lineTo(259, 176);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(312, 278);
context.stroke();

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

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

context.lineTo(366, 278);
context.stroke();

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

context.lineTo(405, 259);
context.stroke();

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

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

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

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

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

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

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

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

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

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

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(359, 171);

context.lineTo(359, 171);
context.stroke();
</script>
</body>
</html>