<!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(7, 98, 234, 245);

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(241, 124);

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

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(240, 127);
context.lineTo(331, 125);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(242, 182);
context.lineTo(329, 183);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(242, 248);
context.lineTo(330, 247);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(241, 304);
context.lineTo(331, 301);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.strokeRect(333, 90, 259, 58);

context.strokeStyle = '#000000';
context.strokeRect(332, 160, 256, 52);

context.strokeStyle = '#000000';
context.strokeRect(332, 226, 254, 46);

context.strokeStyle = '#000000';
context.strokeRect(329, 279, 260, 41);
</script>
</body>
</html>