<!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(151, 135);

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

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

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

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

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

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

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

context.lineTo(171, 171);
context.stroke();

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

context.lineTo(187, 184);
context.stroke();

context.lineTo(189, 187);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(387, 264);
context.stroke();

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

context.lineTo(387, 274);
context.stroke();

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

context.lineTo(387, 279);
context.stroke();
</script>
</body>
</html>