<!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(101, 103);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(253, 159);
context.stroke();

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

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

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

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

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

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

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

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

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

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

context.lineTo(166, 134);
context.stroke();
</script>
</body>
</html>