<!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(100, 4);
context.lineTo(101, 321);
context.stroke();
context.closePath();

context.lineWidth = 4;

context.lineWidth = 3;

context.lineWidth = 2;

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(0, 71);
context.lineTo(583, 52);
context.stroke();
context.closePath();

context.strokeStyle = '#FFFFFF';
context.beginPath();
context.moveTo(103, 80);

context.lineTo(102, 80);
context.stroke();

context.lineTo(101, 80);
context.stroke();

context.lineTo(99, 81);
context.stroke();

context.lineTo(87, 88);
context.stroke();

context.lineTo(81, 90);
context.stroke();

context.lineTo(68, 93);
context.stroke();

context.lineTo(58, 94);
context.stroke();

context.lineTo(56, 94);
context.stroke();

context.lineTo(58, 89);
context.stroke();

context.lineTo(79, 61);
context.stroke();

context.lineTo(87, 44);
context.stroke();

context.lineTo(92, 35);
context.stroke();

context.lineTo(94, 32);
context.stroke();

context.lineTo(95, 31);
context.stroke();

context.lineTo(95, 32);
context.stroke();

context.lineTo(95, 35);
context.stroke();

context.lineTo(95, 38);
context.stroke();

context.lineTo(95, 41);
context.stroke();

context.lineTo(95, 43);
context.stroke();

context.lineTo(102, 55);
context.stroke();

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

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

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

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

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

context.lineTo(162, 102);
context.stroke();

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

context.lineTo(233, 128);
context.stroke();

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

context.lineTo(244, 131);
context.stroke();

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

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

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

context.lineTo(241, 173);
context.stroke();

context.lineTo(271, 195);
context.stroke();

context.lineTo(297, 206);
context.stroke();

context.lineTo(316, 216);
context.stroke();

context.lineTo(320, 220);
context.stroke();

context.lineTo(321, 220);
context.stroke();

context.lineTo(321, 220);
context.stroke();
</script>
</body>
</html>