<!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(142, 75);

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

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

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

context.lineTo(257, 130);
context.stroke();

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

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

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

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

context.lineTo(270, 265);
context.stroke();

context.lineTo(234, 290);
context.stroke();

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

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

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

context.lineTo(134, 268);
context.stroke();

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

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

context.lineTo(130, 151);
context.stroke();

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

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

context.lineTo(250, 134);
context.stroke();

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

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

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

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

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

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

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

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

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

context.lineTo(383, 149);
context.stroke();

context.lineTo(394, 149);
context.stroke();

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

context.lineTo(395, 149);
context.stroke();
</script>
</body>
</html>