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

context.lineWidth = 4;

context.strokeStyle = '#FFD014';
context.strokeRect(90, 66, 118, 333);

context.strokeStyle = '#FFD014';
context.strokeRect(415, 63, 110, 337);

context.strokeStyle = '#FF4019';
context.beginPath();
context.moveTo(229, 394);
context.lineTo(379, 393);
context.stroke();
context.closePath();

context.strokeStyle = '#FF4019';
context.beginPath();
context.moveTo(369, 386);
context.lineTo(377, 393);
context.stroke();
context.closePath();

context.strokeStyle = '#FF4019';
context.beginPath();
context.moveTo(377, 393);
context.lineTo(367, 405);
context.stroke();
context.closePath();

context.strokeStyle = '#FF4019';
context.beginPath();
context.moveTo(221, 68);
context.lineTo(223, 360);
context.stroke();
context.closePath();

context.strokeStyle = '#FF4019';
context.beginPath();
context.moveTo(215, 352);
context.lineTo(222, 359);
context.stroke();
context.closePath();

context.strokeStyle = '#FF4019';
context.beginPath();
context.moveTo(224, 359);
context.lineTo(234, 349);
context.stroke();
context.closePath();
</script>
</body>
</html>