<!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.strokeStyle = '#000000';
context.beginPath();
context.moveTo(101, 66);
context.lineTo(353, 104);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(508, 82);
context.lineTo(182, 261);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(501, 194);
context.lineTo(279, 327);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(506, 299);
context.lineTo(236, 417);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(117, 298);
context.lineTo(402, 389);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(152, 203);
context.lineTo(79, 269);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(119, 109);
context.lineTo(56, 176);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(229, 142);
context.lineTo(323, 124);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(388, 40);
context.lineTo(238, 36);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.strokeRect(412, 35, 87, 23);

context.strokeStyle = '#000000';
context.strokeRect(140, 133, 47, 40);

context.strokeStyle = '#000000';
context.strokeRect(48, 348, 55, 112);

context.strokeStyle = '#000000';
context.strokeRect(443, 342, 101, 108);

context.strokeStyle = '#000000';
context.strokeRect(265, 234, 118, 14);

context.strokeStyle = '#000000';
context.strokeRect(392, 160, 75, 26);

context.strokeStyle = '#000000';
context.strokeRect(19, 14, 177, 24);

context.strokeStyle = '#000000';
context.strokeRect(548, 86, 26, 201);

context.strokeStyle = '#000000';
context.strokeRect(520, 14, 53, 40);

context.strokeStyle = '#000000';
context.strokeRect(142, 360, 29, 108);

context.strokeStyle = '#000000';
context.strokeRect(302, 436, 97, 25);

context.strokeStyle = '#000000';
context.strokeRect(34, 196, 8, 123);

context.lineWidth = 6;

context.lineWidth = 7;

context.lineWidth = 8;

context.lineWidth = 9;

context.lineWidth = 8;

context.lineWidth = 6;

context.lineWidth = 5;

context.lineWidth = 4;

context.lineWidth = 3;
</script>
</body>
</html>