<!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(97, 98);
context.lineTo(259, 165);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(238, 211);
context.lineTo(342, 151);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(298, 129);
context.lineTo(255, 114);
context.stroke();
context.closePath();

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

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(335, 208);
context.lineTo(206, 41);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.strokeRect(254, 73, 52, 121);

context.strokeStyle = '#000000';
context.strokeRect(346, 241, 102, 73);

context.strokeStyle = '#000000';
context.strokeRect(459, 156, 15, 49);

context.strokeStyle = '#000000';
context.strokeRect(492, 98, 35, 107);

context.lineWidth = 10;

context.lineWidth = 9;

context.lineWidth = 8;

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