<!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(76, 280);

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

context.lineTo(82, 280);
context.stroke();

context.lineTo(91, 278);
context.stroke();

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

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

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

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

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

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

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

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

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

context.lineTo(250, 269);
context.stroke();

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

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

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

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

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

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

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

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

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

context.lineTo(318, 221);
context.stroke();

context.lineTo(333, 214);
context.stroke();

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

context.lineTo(354, 201);
context.stroke();

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

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

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

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

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

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

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

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

context.lineTo(402, 174);
context.stroke();

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

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

context.lineTo(426, 170);
context.stroke();

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

context.lineTo(459, 168);
context.stroke();

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

context.lineTo(485, 167);
context.stroke();

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

context.lineTo(499, 167);
context.stroke();

context.lineTo(502, 166);
context.stroke();

context.lineTo(504, 166);
context.stroke();

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

context.lineTo(504, 165);
context.stroke();
</script>
</body>
</html>