<!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(120, 40);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(409, 223);
context.stroke();

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

context.lineTo(434, 286);
context.stroke();

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

context.lineTo(434, 321);
context.stroke();

context.lineTo(429, 335);
context.stroke();

context.lineTo(416, 349);
context.stroke();

context.lineTo(402, 363);
context.stroke();

context.lineTo(375, 381);
context.stroke();

context.lineTo(354, 389);
context.stroke();

context.lineTo(333, 392);
context.stroke();

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

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

context.lineTo(199, 346);
context.stroke();

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

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

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

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

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

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

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

context.lineTo(262, 126);
context.stroke();

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

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

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

context.lineTo(448, 83);
context.stroke();

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

context.lineTo(487, 63);
context.stroke();

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

context.lineTo(505, 52);
context.stroke();
</script>
</body>
</html>