<!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(97, 239);

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(314, 315);
context.stroke();

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

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

context.lineTo(335, 332);
context.stroke();

context.lineTo(343, 333);
context.stroke();

context.lineTo(355, 330);
context.stroke();

context.lineTo(370, 319);
context.stroke();

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

context.lineTo(394, 288);
context.stroke();

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

context.lineTo(403, 268);
context.stroke();

context.lineTo(403, 268);
context.stroke();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(292, 202);

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(227, 363);
context.stroke();
</script>
</body>
</html>