<!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(79, 247);

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

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

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

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

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

context.lineTo(88, 202);
context.stroke();

context.lineTo(94, 198);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(285, 283);
context.stroke();

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

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

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

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

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

context.lineTo(391, 238);
context.stroke();

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

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

context.lineTo(417, 222);
context.stroke();
</script>
</body>
</html>