<!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.beginPath();
context.moveTo(142, 98);

context.lineWidth = 6;

context.lineWidth = 7;

context.lineWidth = 9;

context.lineWidth = 11;

context.lineWidth = 14;

context.strokeStyle = '#4400FF';
context.strokeRect(200, 264, 254, 193);

context.strokeStyle = '#4400FF';
context.beginPath();
context.moveTo(200, 265);

context.strokeStyle = '#4400FF';
context.beginPath();
context.moveTo(198, 264);
context.lineTo(323, 118);
context.stroke();
context.closePath();

context.strokeStyle = '#4400FF';
context.beginPath();
context.moveTo(319, 122);
context.lineTo(454, 264);
context.stroke();
context.closePath();

context.strokeStyle = '#4400FF';
context.beginPath();
context.moveTo(508, 255);
context.lineTo(320, 70);
context.stroke();
context.closePath();

context.strokeStyle = '#4400FF';
context.beginPath();
context.moveTo(329, 73);
context.lineTo(131, 260);
context.stroke();
context.closePath();

context.strokeStyle = '#4400FF';
context.beginPath();
context.moveTo(138, 256);
context.lineTo(207, 256);
context.stroke();
context.closePath();

context.strokeStyle = '#4400FF';
context.beginPath();
context.moveTo(507, 252);
context.lineTo(445, 263);
context.stroke();
context.closePath();

context.strokeStyle = '#4400FF';
context.strokeRect(391, 50, 42, 127);

context.strokeStyle = '#4400FF';
context.strokeRect(327, 7, 174, 41);

context.strokeStyle = '#FFFCFD';
context.strokeRect(278, 321, 99, 68);
</script>
</body>
</html>