<!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.lineWidth = 4;

context.lineWidth = 3;

context.lineWidth = 2;

context.strokeStyle = '#000000';
context.strokeRect(200, 69, 214, 33);

context.strokeStyle = '#000000';
context.strokeRect(202, 145, 212, 36);

context.strokeStyle = '#000000';
context.strokeRect(424, 141, 173, 40);

context.strokeStyle = '#000000';
context.strokeRect(0, 142, 195, 39);

context.strokeStyle = '#000000';
context.strokeRect(1, 263, 197, 225);

context.strokeStyle = '#000000';
context.strokeRect(203, 262, 204, 225);

context.strokeStyle = '#000000';
context.strokeRect(417, 260, 182, 227);

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(192, 89);
context.lineTo(100, 136);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(311, 110);
context.lineTo(311, 136);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(421, 86);
context.lineTo(523, 132);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(313, 187);
context.lineTo(312, 244);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(525, 186);
context.lineTo(525, 247);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(82, 188);
context.lineTo(82, 249);
context.stroke();
context.closePath();
</script>
</body>
</html>