<!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(254, 93);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(220, 222);
context.stroke();

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

context.lineTo(220, 221);
context.stroke();
</script>
</body>
</html>