<!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(147, 177);

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

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

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

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

context.lineTo(235, 212);
context.stroke();

context.lineTo(288, 231);
context.stroke();

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

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

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

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

context.lineTo(470, 269);
context.stroke();

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

context.lineTo(475, 254);
context.stroke();

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

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

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

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

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

context.lineTo(426, 180);
context.stroke();

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

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

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

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

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

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

context.lineTo(393, 152);
context.stroke();

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

context.lineTo(352, 95);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(185, 162);
context.stroke();

context.lineTo(185, 162);
context.stroke();
</script>
</body>
</html>