<!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(96, 118);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(347, 389);
context.stroke();

context.lineTo(353, 396);
context.stroke();

context.lineTo(361, 404);
context.stroke();

context.lineTo(372, 414);
context.stroke();

context.lineTo(378, 420);
context.stroke();

context.lineTo(383, 422);
context.stroke();

context.lineTo(385, 423);
context.stroke();

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

context.lineTo(393, 421);
context.stroke();

context.lineTo(401, 415);
context.stroke();

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

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

context.lineTo(449, 361);
context.stroke();

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

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

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

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

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

context.lineTo(523, 196);
context.stroke();

context.lineTo(520, 175);
context.stroke();

context.lineTo(514, 160);
context.stroke();

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

context.lineTo(501, 146);
context.stroke();

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

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

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

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

context.lineTo(444, 132);
context.stroke();

context.lineTo(427, 132);
context.stroke();

context.lineTo(411, 132);
context.stroke();

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

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

context.lineTo(395, 131);
context.stroke();
</script>
</body>
</html>