<!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 = '#FFFFFF';
context.beginPath();
context.moveTo(312, 165);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(311, 307);
context.stroke();

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

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

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

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

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

context.lineTo(434, 311);
context.stroke();

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

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

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

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

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

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

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

context.lineTo(483, 281);
context.stroke();

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

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