<!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(310, 124);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(186, 300);
context.stroke();

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

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

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

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

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

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

context.lineTo(437, 206);
context.stroke();

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

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

context.lineTo(420, 147);
context.stroke();

context.lineTo(401, 136);
context.stroke();

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

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

context.lineTo(385, 124);
context.stroke();

context.lineTo(385, 123);
context.stroke();

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

context.lineTo(385, 122);
context.stroke();
</script>
</body>
</html>