<!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(134, 65);

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

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

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

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

context.lineTo(125, 82);
context.stroke();

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

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

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

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

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

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

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

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

context.lineTo(118, 175);
context.stroke();

context.lineTo(122, 184);
context.stroke();

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

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

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

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

context.lineTo(182, 238);
context.stroke();

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

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

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

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

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

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

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

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

context.lineTo(281, 254);
context.stroke();

context.lineTo(284, 247);
context.stroke();

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

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

context.lineTo(296, 225);
context.stroke();

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

context.lineTo(303, 207);
context.stroke();

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

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

context.lineTo(307, 192);
context.stroke();

context.lineTo(307, 190);
context.stroke();

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

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

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

context.lineTo(307, 185);
context.stroke();
</script>
</body>
</html>