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

context.strokeStyle = '#00FF5E';
context.beginPath();
context.moveTo(0, 402);
context.lineTo(598, 401);
context.stroke();
context.closePath();

context.strokeStyle = '#82FBFF';
context.beginPath();
context.moveTo(0, 107);
context.lineTo(598, 109);
context.stroke();
context.closePath();

context.strokeStyle = '#82FBFF';
context.save();
context.translate(113, 27);
context.scale(1, 0.30303030303030304);
context.beginPath();
context.arc(0, 0, 69, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#82FBFF';
context.save();
context.translate(449.5, 31.5);
context.scale(1, 0.36507936507936506);
context.beginPath();
context.arc(0, 0, 67, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#82FBFF';
context.save();
context.translate(288.5, 53);
context.scale(1, 0.25316455696202533);
context.beginPath();
context.arc(0, 0, 81, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#82FBFF';
context.save();
context.translate(535, 77.5);
context.scale(1, 0.30357142857142855);
context.beginPath();
context.arc(0, 0, 59, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();
</script>
</body>
</html>