<!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(102, 67);

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

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

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

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

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

context.lineTo(273, 213);
context.stroke();

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

context.lineTo(345, 274);
context.stroke();

context.lineTo(376, 297);
context.stroke();

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

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

context.lineTo(421, 331);
context.stroke();

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

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

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

context.lineTo(432, 340);
context.stroke();

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

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

context.lineTo(450, 347);
context.stroke();

context.lineTo(453, 347);
context.stroke();

context.lineTo(453, 348);
context.stroke();

context.lineTo(432, 356);
context.stroke();

context.lineTo(404, 368);
context.stroke();

context.lineTo(370, 386);
context.stroke();

context.lineTo(332, 405);
context.stroke();

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

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

context.lineTo(208, 446);
context.stroke();

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

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

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

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

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

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

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

context.lineTo(117, 474);
context.stroke();

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

context.lineTo(118, 474);
context.stroke();
</script>
</body>
</html>