<!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(108, 213, 366, 245);

context.strokeStyle = '#000000';
context.strokeRect(150, 274, 81, 68);

context.strokeStyle = '#000000';
context.strokeRect(361, 277, 83, 67);

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(192, 271);
context.lineTo(192, 343);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(150, 308);
context.lineTo(234, 308);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(362, 310);
context.lineTo(446, 309);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(405, 277);
context.lineTo(406, 345);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(109, 211);
context.lineTo(277, 65);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(277, 65);
context.lineTo(476, 215);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.strokeRect(262, 309, 74, 148);

context.strokeStyle = '#000000';
context.save();
context.translate(272, 388);
context.scale(NaN, NaN);
context.beginPath();
context.arc(0, 0, 0, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(277, 381.5);
context.scale(0.8, 1);
context.beginPath();
context.arc(0, 0, 6, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.lineWidth = 6;

context.lineWidth = 7;

context.lineWidth = 8;

context.lineWidth = 9;

context.lineWidth = 10;

context.lineWidth = 11;

context.lineWidth = 12;

context.lineWidth = 13;

context.lineWidth = 12;

context.lineWidth = 11;

context.lineWidth = 10;

context.lineWidth = 9;

context.lineWidth = 8;

context.lineWidth = 7;

context.lineWidth = 6;
</script>
</body>
</html>