<!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(55, 180, 92, 110);

context.strokeStyle = '#000000';
context.strokeRect(146, 74, 218, 216);

context.strokeStyle = '#000000';
context.strokeRect(364, 178, 91, 111);

context.strokeStyle = '#000000';
context.strokeRect(180, 257, 83, 46);

context.strokeStyle = '#000000';
context.strokeRect(263, 258, 72, 45);

context.strokeStyle = '#000000';
context.strokeRect(226, 124, 59, 130);

context.strokeStyle = '#000000';
context.strokeRect(192, 2, 122, 70);

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(218, 49);
context.lineTo(285, 49);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.save();
context.translate(238, 30);
context.scale(1, 1);
context.beginPath();
context.arc(0, 0, 3, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(219, 49);
context.lineTo(284, 49);
context.stroke();
context.closePath();
</script>
</body>
</html>