<!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, 124);

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

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

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

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

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

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

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

context.lineTo(205, 183);
context.stroke();

context.lineTo(214, 191);
context.stroke();

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

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

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

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

context.lineTo(304, 228);
context.stroke();

context.lineTo(314, 228);
context.stroke();

context.lineTo(328, 230);
context.stroke();

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

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

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

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

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

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

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

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

context.lineTo(401, 256);
context.stroke();

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

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

context.lineTo(413, 261);
context.stroke();

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

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

context.lineTo(424, 261);
context.stroke();

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

context.lineTo(428, 253);
context.stroke();

context.lineTo(431, 249);
context.stroke();

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

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

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

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

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

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

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

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

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

context.lineTo(456, 218);
context.stroke();

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

context.lineTo(459, 215);
context.stroke();

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

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

context.lineTo(461, 212);
context.stroke();
</script>
</body>
</html>