<!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(116, 90);

context.lineTo(117, 90);
context.stroke();

context.lineTo(118, 89);
context.stroke();

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

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

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

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

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

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

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

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

context.lineTo(152, 83);
context.stroke();

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

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

context.lineTo(192, 82);
context.stroke();

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

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

context.lineTo(215, 82);
context.stroke();

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

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

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

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

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

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

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

context.lineTo(249, 80);
context.stroke();

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

context.strokeStyle = '#FFFFFF';
context.beginPath();
context.moveTo(258, 63);

context.lineTo(259, 64);
context.stroke();

context.lineTo(259, 65);
context.stroke();

context.lineTo(258, 66);
context.stroke();

context.lineTo(257, 66);
context.stroke();

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

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

context.lineTo(249, 69);
context.stroke();

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

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

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

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

context.lineTo(235, 69);
context.stroke();

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

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

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

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

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

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

context.lineTo(220, 74);
context.stroke();

context.lineTo(216, 75);
context.stroke();

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

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

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

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

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

context.lineTo(209, 79);
context.stroke();
</script>
</body>
</html>