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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(183, 169);
context.stroke();

context.lineTo(183, 170);
context.stroke();

context.lineTo(183, 171);
context.stroke();

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

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

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

context.lineTo(183, 175);
context.stroke();
</script>
</body>
</html>