<!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(123, 48);

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

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

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

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

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

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

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

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

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

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

context.lineTo(209, 154);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(263, 178);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(302, 179);
context.stroke();
</script>
</body>
</html>