<!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, 71);

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

context.lineTo(97, 85);
context.stroke();

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

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

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

context.lineTo(114, 151);
context.stroke();

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

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

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

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

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

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

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

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

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

context.lineTo(150, 201);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(365, 253);
context.stroke();

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

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

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

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

context.lineTo(420, 221);
context.stroke();

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

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

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

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

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

context.lineTo(463, 183);
context.stroke();

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

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

context.lineTo(463, 181);
context.stroke();
</script>
</body>
</html>