<!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(150, 205);

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

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(126, 119);

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

context.lineTo(157, 117);
context.stroke();

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

context.lineTo(191, 117);
context.stroke();

context.lineTo(212, 117);
context.stroke();

context.lineTo(232, 119);
context.stroke();

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

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

context.lineTo(277, 135);
context.stroke();

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

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

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

context.lineTo(295, 177);
context.stroke();

context.lineTo(295, 188);
context.stroke();

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

context.lineTo(288, 211);
context.stroke();

context.lineTo(282, 218);
context.stroke();

context.lineTo(277, 222);
context.stroke();

context.lineTo(274, 224);
context.stroke();

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

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

context.lineTo(256, 226);
context.stroke();

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

context.lineTo(222, 224);
context.stroke();

context.lineTo(201, 221);
context.stroke();

context.lineTo(179, 219);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(139, 126);
context.stroke();
</script>
</body>
</html>