<!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(253, 53);

context.lineTo(258, 54);
context.stroke();

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

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

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

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

context.lineTo(310, 78);
context.stroke();

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

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

context.lineTo(326, 99);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(238, 306);
context.stroke();

context.lineTo(238, 306);
context.stroke();

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

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

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

context.lineTo(243, 316);
context.stroke();
</script>
</body>
</html>