<!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(165, 123);

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

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

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

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

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

context.lineTo(269, 129);
context.stroke();

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

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

context.lineTo(286, 140);
context.stroke();

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

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

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

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

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

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

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

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

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

context.lineTo(289, 159);
context.stroke();

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

context.lineTo(286, 166);
context.stroke();

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

context.lineTo(275, 181);
context.stroke();

context.lineTo(269, 188);
context.stroke();

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

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

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

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

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

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

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

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

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

context.lineTo(167, 217);
context.stroke();

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

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

context.lineTo(147, 217);
context.stroke();

context.lineTo(141, 217);
context.stroke();

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

context.lineTo(135, 215);
context.stroke();

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

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

context.lineTo(130, 212);
context.stroke();
</script>
</body>
</html>