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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(215, 269);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(331, 387);
context.stroke();
</script>
</body>
</html>