<!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 = 4;

context.strokeStyle = '#402306';
context.strokeRect(70, 391, 22, 42);

context.strokeStyle = '#1C4004';
context.save();
context.translate(67, 362.5);
context.scale(0.9696969696969697, 1);
context.beginPath();
context.arc(0, 0, 46, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#1C4004';
context.strokeRect(43, 43, 61, 63);

context.strokeStyle = '#D43D0F';
context.strokeRect(135, 43, 66, 63);

context.strokeStyle = '#72D411';
context.save();
context.translate(330, 103);
context.scale(1, 0.4642857142857143);
context.beginPath();
context.arc(0, 0, 62, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#CFD44C';
context.save();
context.translate(413, 90.5);
context.scale(1, 0.55);
context.beginPath();
context.arc(0, 0, 68, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(213, 224);
context.lineTo(213, 318);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(222, 227);
context.lineTo(223, 312);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(231, 231);
context.lineTo(231, 307);
context.stroke();
context.closePath();

context.lineWidth = 7;

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(242, 232);
context.lineTo(240, 300);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(196, 223);
context.lineTo(195, 316);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(205, 227);
context.lineTo(205, 311);
context.stroke();
context.closePath();
</script>
</body>
</html>