<!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(90, 49);
context.lineTo(168, 95);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(58, 82);

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

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

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

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

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

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

context.lineTo(63, 106);
context.stroke();

context.lineTo(64, 106);
context.stroke();

context.lineTo(65, 106);
context.stroke();

context.lineTo(66, 106);
context.stroke();

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

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

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

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

context.lineTo(65, 109);
context.stroke();

context.lineTo(63, 120);
context.stroke();

context.lineTo(63, 126);
context.stroke();

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

context.lineTo(71, 140);
context.stroke();

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

context.lineTo(84, 147);
context.stroke();

context.lineTo(91, 147);
context.stroke();

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

context.lineTo(109, 142);
context.stroke();

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

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

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

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

context.lineTo(114, 127);
context.stroke();

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

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

context.lineTo(106, 138);
context.stroke();

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

context.lineTo(107, 151);
context.stroke();

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

context.lineTo(116, 160);
context.stroke();

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

context.lineTo(132, 163);
context.stroke();

context.lineTo(138, 163);
context.stroke();

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

context.lineTo(143, 161);
context.stroke();

context.lineTo(143, 160);
context.stroke();

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

context.lineTo(144, 160);
context.stroke();
</script>
</body>
</html>