<!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(174, 59);

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

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

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

context.lineTo(121, 88);
context.stroke();

context.lineTo(105, 99);
context.stroke();

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

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

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

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

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

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

context.lineTo(128, 118);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(89, 233);
context.stroke();

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

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

context.lineTo(88, 238);
context.stroke();
</script>
</body>
</html>