<!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(144, 155);

context.lineTo(144, 165);
context.stroke();

context.lineTo(145, 181);
context.stroke();

context.lineTo(145, 200);
context.stroke();

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

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

context.lineTo(156, 258);
context.stroke();

context.lineTo(167, 270);
context.stroke();

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

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

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

context.lineTo(196, 270);
context.stroke();

context.lineTo(202, 268);
context.stroke();

context.lineTo(205, 267);
context.stroke();

context.lineTo(215, 264);
context.stroke();

context.lineTo(230, 261);
context.stroke();

context.lineTo(249, 259);
context.stroke();

context.lineTo(266, 258);
context.stroke();

context.lineTo(279, 258);
context.stroke();

context.lineTo(289, 258);
context.stroke();

context.lineTo(292, 258);
context.stroke();

context.lineTo(293, 258);
context.stroke();

context.lineTo(294, 258);
context.stroke();

context.lineTo(294, 258);
context.stroke();

context.lineWidth = 4;

context.lineWidth = 3;

context.lineWidth = 2;

context.lineWidth = 3;

context.lineWidth = 4;

context.lineWidth = 6;

context.lineWidth = 7;

context.lineWidth = 8;

context.lineWidth = 9;

context.lineWidth = 10;

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