<!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(317, 162);

context.lineTo(265, 138);
context.stroke();

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

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

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

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

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

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

context.lineTo(228, 149);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(298, 261);
context.stroke();

context.lineTo(313, 264);
context.stroke();

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

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

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

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

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

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

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

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

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

context.lineTo(315, 279);
context.stroke();
</script>
</body>
</html>