<!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(119, 79);

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

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

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

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

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

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

context.lineTo(148, 133);
context.stroke();

context.lineTo(153, 143);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(357, 249);
context.stroke();

context.lineTo(358, 246);
context.stroke();

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

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

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

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

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

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

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

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

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

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

context.lineTo(371, 213);
context.stroke();
</script>
</body>
</html>