<!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(210, 47);

context.lineTo(212, 61);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(397, 155);
context.stroke();

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

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

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

context.lineTo(395, 131);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(293, 103);
context.stroke();
</script>
</body>
</html>