<!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 = '#FF9E3D';
context.strokeRect(106, 21, 196, 25);

context.strokeStyle = '#FFBAA1';
context.strokeRect(161, 7, 79, 186);

context.strokeStyle = '#FFBAA1';
context.strokeRect(86, 110, 220, 40);

context.strokeStyle = '#FFC17A';
context.strokeRect(269, 3, 66, 156);

context.strokeStyle = '#FFC17A';
context.strokeRect(202, 69, 103, 30);

context.strokeStyle = '#FFC17A';
context.strokeRect(323, 44, 100, 56);

context.strokeStyle = '#FFC17A';
context.strokeRect(347, 15, 57, 135);

context.strokeStyle = '#FF9661';
context.strokeRect(173, 73, 52, 20);

context.strokeStyle = '#FF9661';
context.strokeRect(302, 54, 91, 37);

context.strokeStyle = '#FF9661';
context.strokeRect(280, 125, 111, 64);

context.strokeStyle = '#FF9661';
context.strokeRect(368, 69, 87, 67);

context.strokeStyle = '#FF9661';
context.strokeRect(197, 122, 66, 52);

context.strokeStyle = '#FF9661';
context.strokeRect(79, 27, 76, 102);

context.strokeStyle = '#FF9661';
context.strokeRect(340, 8, 85, 27);
</script>
</body>
</html>