<!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(155, 107);

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

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

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

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

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

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

context.lineTo(369, 175);
context.stroke();

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

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

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

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

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

context.lineTo(379, 191);
context.stroke();

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

context.lineTo(373, 221);
context.stroke();

context.lineTo(365, 241);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(86, 173);
context.stroke();

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

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

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

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

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

context.lineTo(261, 76);
context.stroke();

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

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

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

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

context.lineTo(318, 93);
context.stroke();
</script>
</body>
</html>