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

context.lineWidth = 10;

context.lineWidth = 11;

context.strokeStyle = '#00FF44';
context.strokeRect(155, 111, 57, 10);

context.strokeStyle = '#00FF44';
context.strokeRect(152, 149, 56, 8);

context.strokeStyle = '#00FF44';
context.strokeRect(150, 156, 9, 54);

context.lineWidth = 12;

context.lineWidth = 13;

context.lineWidth = 14;

context.strokeStyle = '#00FF44';
context.beginPath();
context.moveTo(246, 160);

context.strokeStyle = '#00FF44';
context.save();
context.translate(274.5, 166.5);
context.scale(1, 1);
context.beginPath();
context.arc(0, 0, 38, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#00FF44';
context.beginPath();
context.moveTo(241, 160);

context.lineTo(242, 160);
context.stroke();

context.lineTo(243, 160);
context.stroke();

context.strokeStyle = '#00FF44';
context.strokeRect(240, 162, 72, 2);

context.strokeStyle = '#FFFFFF';
context.strokeRect(274, 175, 81, 9);
</script>
</body>
</html>