<!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(103, 153);

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

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

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

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

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

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

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

context.lineTo(271, 56);
context.stroke();

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

context.lineTo(272, 85);
context.stroke();

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

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

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

context.lineTo(282, 210);
context.stroke();

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

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

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

context.lineTo(259, 267);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(333, 274);
context.stroke();

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

context.lineTo(345, 272);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(376, 290);
context.stroke();
</script>
</body>
</html>