<!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(96, 163);

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

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

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

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

context.lineTo(143, 200);
context.stroke();

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

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

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

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

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

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

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

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

context.lineTo(200, 250);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(357, 145);
context.stroke();

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

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

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

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

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

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

context.lineTo(387, 126);
context.stroke();

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

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

context.lineTo(396, 119);
context.stroke();

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

context.lineTo(410, 109);
context.stroke();

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

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

context.lineTo(416, 104);
context.stroke();
</script>
</body>
</html>