<!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(415, 68);

context.lineTo(407, 69);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(295, 157);
context.stroke();

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

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

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

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

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

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

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

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

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

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

context.lineTo(410, 279);
context.stroke();

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

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

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

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

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

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

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

context.lineTo(421, 292);
context.stroke();
</script>
</body>
</html>