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

context.lineWidth = 8;

context.lineWidth = 9;

context.strokeStyle = '#000000';
context.save();
context.translate(293, 231);
context.scale(1, 0.75);
context.beginPath();
context.arc(0, 0, 300, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(267.5, 152.5);
context.scale(1, 0.4336283185840708);
context.beginPath();
context.arc(0, 0, 123, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(194, 159);

context.lineTo(205, 157);
context.stroke();

context.lineTo(229, 152);
context.stroke();

context.lineTo(273, 141);
context.stroke();

context.lineTo(288, 137);
context.stroke();

context.lineTo(300, 133);
context.stroke();

context.lineTo(309, 130);
context.stroke();

context.lineTo(323, 124);
context.stroke();

context.lineTo(327, 122);
context.stroke();

context.lineTo(331, 121);
context.stroke();

context.lineTo(335, 119);
context.stroke();

context.lineTo(340, 118);
context.stroke();

context.lineTo(345, 117);
context.stroke();

context.lineTo(350, 116);
context.stroke();

context.lineTo(355, 115);
context.stroke();

context.lineTo(358, 116);
context.stroke();

context.lineTo(362, 118);
context.stroke();

context.lineTo(365, 123);
context.stroke();

context.lineTo(375, 136);
context.stroke();

context.lineTo(386, 152);
context.stroke();

context.lineTo(413, 188);
context.stroke();

context.lineTo(428, 205);
context.stroke();

context.lineTo(443, 218);
context.stroke();

context.lineTo(457, 226);
context.stroke();

context.lineTo(468, 231);
context.stroke();

context.lineTo(478, 232);
context.stroke();

context.lineTo(478, 232);
context.stroke();
</script>
</body>
</html>