<!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(206, 49);

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

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

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

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

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

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

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

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

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

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

context.lineTo(357, 192);
context.stroke();

context.lineTo(357, 199);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(220, 165);
context.stroke();

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

context.lineTo(227, 165);
context.stroke();
</script>
</body>
</html>