<!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.lineWidth = 6;

context.lineWidth = 5;

context.lineWidth = 4;

context.lineWidth = 5;

context.strokeStyle = '#D5E39D';
context.strokeRect(55, 61, 492, 112);

context.strokeStyle = '#D5E39D';
context.strokeRect(347, 96, 94, 43);

context.strokeStyle = '#D5E39D';
context.save();
context.translate(479, 85);
context.scale(1, 1);
context.beginPath();
context.arc(0, 0, 11, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#2424E3';
context.strokeRect(80, 76, 119, 29);

context.strokeStyle = '#2424E3';
context.strokeRect(206, 74, 111, 31);

context.strokeStyle = '#2424E3';
context.strokeRect(77, 115, 122, 25);

context.strokeStyle = '#2424E3';
context.strokeRect(205, 112, 110, 27);

context.strokeStyle = '#E33C22';
context.save();
context.translate(474.5, 124);
context.scale(1, 0);
context.beginPath();
context.arc(0, 0, 1, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#E33C22';
context.save();
context.translate(474, 124);
context.scale(1, 0.5);
context.beginPath();
context.arc(0, 0, 4, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#E33C22';
context.save();
context.translate(486, 122);
context.scale(1, 0.3333333333333333);
context.beginPath();
context.arc(0, 0, 6, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();
</script>
</body>
</html>