<!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(300, 109);

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

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

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

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

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

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

context.lineTo(381, 158);
context.stroke();

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

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

context.lineTo(384, 236);
context.stroke();

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

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

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

context.lineTo(342, 339);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(140, 181);
context.stroke();

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

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

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

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

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

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

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

context.lineTo(302, 142);
context.stroke();

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

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

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

context.lineTo(309, 135);
context.stroke();
</script>
</body>
</html>