<!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(18, 42);

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

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

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

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

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

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

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

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

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

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

context.lineTo(40, 40);
context.stroke();

context.lineTo(41, 40);
context.stroke();

context.lineTo(44, 40);
context.stroke();

context.lineTo(48, 40);
context.stroke();

context.lineTo(52, 40);
context.stroke();

context.lineTo(54, 40);
context.stroke();

context.lineTo(57, 40);
context.stroke();

context.lineTo(58, 40);
context.stroke();

context.lineTo(60, 40);
context.stroke();

context.lineTo(61, 41);
context.stroke();

context.lineTo(62, 41);
context.stroke();

context.lineTo(63, 41);
context.stroke();

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

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

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

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

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

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

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

context.lineTo(91, 41);
context.stroke();

context.lineTo(93, 41);
context.stroke();

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

context.lineTo(98, 41);
context.stroke();

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

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

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

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

context.lineTo(112, 41);
context.stroke();

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

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

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

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

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(250, 134);

context.lineTo(250, 134);
context.stroke();
</script>
</body>
</html>