<!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(46, 24);

context.lineTo(46, 24);
context.stroke();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(158, 10);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(380, 87);
context.stroke();

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

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

context.lineTo(342, 78);
context.stroke();

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

context.lineTo(291, 66);
context.stroke();

context.lineTo(264, 60);
context.stroke();

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

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

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

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

context.lineTo(216, 54);
context.stroke();
</script>
</body>
</html>