<!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(54, 161);

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(403, 329);
context.stroke();

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

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

context.lineTo(417, 322);
context.stroke();

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

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

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

context.lineTo(471, 259);
context.stroke();

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

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

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

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

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

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

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

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

context.lineTo(271, 126);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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