<!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.strokeRect(123, 93, 185, 328);

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(187, 112);
context.lineTo(195, 112);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(207, 111);
context.lineTo(248, 111);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(122, 128);
context.lineTo(307, 128);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(125, 382);
context.lineTo(309, 383);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(200, 395);

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(212, 399);

context.lineTo(212, 399);
context.stroke();

context.strokeStyle = '#000000';
context.strokeRect(199, 390, 37, 24);
</script>
</body>
</html>