<!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(53, 149);

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

context.lineTo(103, 105);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(282, 84);
context.stroke();

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

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

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

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

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

context.lineTo(303, 128);
context.stroke();

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

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

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

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

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

context.lineTo(297, 194);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(125, 194);
context.stroke();

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

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

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

context.lineTo(98, 119);
context.stroke();

context.lineTo(98, 112);
context.stroke();

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

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

context.lineTo(103, 98);
context.stroke();

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

context.lineTo(106, 95);
context.stroke();
</script>
</body>
</html>