<!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(99, 39);

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

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

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

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

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

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

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

context.lineTo(101, 34);
context.stroke();

context.lineTo(101, 33);
context.stroke();

context.lineTo(101, 32);
context.stroke();

context.lineTo(102, 32);
context.stroke();

context.lineTo(102, 31);
context.stroke();

context.lineTo(102, 30);
context.stroke();

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

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

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

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

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

context.lineTo(105, 23);
context.stroke();

context.lineTo(105, 22);
context.stroke();

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

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

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

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

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

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

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

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

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

context.lineTo(110, 14);
context.stroke();

context.lineTo(110, 13);
context.stroke();

context.lineTo(110, 12);
context.stroke();

context.lineTo(110, 11);
context.stroke();

context.lineTo(110, 10);
context.stroke();

context.lineTo(111, 10);
context.stroke();

context.lineTo(111, 9);
context.stroke();

context.lineTo(111, 8);
context.stroke();

context.lineTo(111, 8);
context.stroke();
</script>
</body>
</html>