<!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(295, 84);

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

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(302, 50);

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

context.lineTo(299, 52);
context.stroke();

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

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

context.lineTo(289, 61);
context.stroke();

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

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

context.lineTo(276, 73);
context.stroke();

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

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

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

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

context.lineTo(243, 93);
context.stroke();

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

context.lineTo(226, 102);
context.stroke();

context.lineTo(223, 104);
context.stroke();

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

context.lineTo(208, 112);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(176, 144);
context.stroke();
</script>
</body>
</html>