<!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(202, 110);

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

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

context.lineTo(202, 116);
context.stroke();

context.lineTo(202, 126);
context.stroke();

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

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

context.lineTo(205, 161);
context.stroke();

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

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

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

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

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

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

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

context.lineTo(251, 260);
context.stroke();

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

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

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

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

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

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

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

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

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

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

context.lineTo(371, 182);
context.stroke();

context.lineTo(377, 164);
context.stroke();

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

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

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

context.lineTo(352, 92);
context.stroke();

context.lineTo(335, 74);
context.stroke();

context.lineTo(322, 67);
context.stroke();

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

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

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

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

context.lineTo(230, 70);
context.stroke();

context.lineTo(216, 76);
context.stroke();

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

context.lineTo(205, 81);
context.stroke();

context.lineTo(202, 83);
context.stroke();

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

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

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

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

context.lineTo(198, 87);
context.stroke();
</script>
</body>
</html>