<!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(144, 60);

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

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

context.lineTo(179, 65);
context.stroke();

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

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

context.lineTo(302, 102);
context.stroke();

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

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

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

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

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

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

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

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

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

context.lineTo(357, 255);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(207, 242);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(189, 200);
context.stroke();
</script>
</body>
</html>