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

context.strokeStyle = '#DED5D5';
context.strokeRect(10, 15, 578, 284);

context.strokeStyle = '#FCF751';
context.save();
context.translate(38, 46.5);
context.scale(1, 0.9375);
context.beginPath();
context.arc(0, 0, 22, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#FCF751';
context.save();
context.translate(88.5, 39);
context.scale(1, 0.8421052631578947);
context.beginPath();
context.arc(0, 0, 25, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#FCF751';
context.save();
context.translate(152, 52);
context.scale(1, 0.8);
context.beginPath();
context.arc(0, 0, 26, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#FCF751';
context.save();
context.translate(226.5, 55.5);
context.scale(1, 0.7391304347826086);
context.beginPath();
context.arc(0, 0, 29, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#FCF751';
context.save();
context.translate(307.5, 61.5);
context.scale(1, 0.6296296296296297);
context.beginPath();
context.arc(0, 0, 32, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#FCF751';
context.save();
context.translate(384.5, 57);
context.scale(1, 0.9565217391304348);
context.beginPath();
context.arc(0, 0, 32, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#FCF751';
context.save();
context.translate(465.5, 58.5);
context.scale(1, 0.92);
context.beginPath();
context.arc(0, 0, 34, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();
</script>
</body>
</html>