<!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(173, 141);

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

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

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

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

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

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

context.lineTo(131, 246);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(280, 132);
context.stroke();

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

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

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

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

context.lineTo(227, 159);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(424, 195);
context.stroke();
</script>
</body>
</html>