<!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 = '#3686FF';
context.strokeRect(174, 74, 303, 348);

context.strokeStyle = '#3686FF';
context.strokeRect(222, 74, 205, 93);

context.strokeStyle = '#3686FF';
context.strokeRect(242, 88, 39, 64);

context.strokeStyle = '#3686FF';
context.strokeRect(184, 265, 282, 146);

context.strokeStyle = '#3686FF';
context.beginPath();
context.moveTo(204, 291);
context.lineTo(445, 289);
context.stroke();
context.closePath();

context.strokeStyle = '#3686FF';
context.beginPath();
context.moveTo(204, 314);
context.lineTo(446, 314);
context.stroke();
context.closePath();

context.strokeStyle = '#3686FF';
context.beginPath();
context.moveTo(209, 342);
context.lineTo(439, 340);
context.stroke();
context.closePath();

context.strokeStyle = '#3686FF';
context.beginPath();
context.moveTo(211, 374);
context.lineTo(442, 374);
context.stroke();
context.closePath();
</script>
</body>
</html>