<!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(122, 80);

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

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

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

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

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

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

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

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

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

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

context.lineTo(220, 176);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(317, 136);
context.stroke();

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

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

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

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

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

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

context.lineTo(344, 114);
context.stroke();
</script>
</body>
</html>