<!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(300, 166);

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

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

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

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

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

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

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

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

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

context.lineTo(421, 386);
context.stroke();

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

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

context.lineTo(421, 415);
context.stroke();

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

context.lineTo(383, 390);
context.stroke();

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

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

context.lineTo(344, 354);
context.stroke();

context.lineTo(340, 351);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(459, 307);
context.stroke();

context.lineTo(457, 323);
context.stroke();

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

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

context.lineTo(432, 324);
context.stroke();

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

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

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

context.lineTo(362, 280);
context.stroke();
</script>
</body>
</html>