<!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(181, 76);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(284, 251);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(319, 228);
context.stroke();
</script>
</body>
</html>