<!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(17, 98);

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(158, 252);
context.stroke();

context.lineTo(170, 252);
context.stroke();

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

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

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

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

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

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

context.lineTo(326, 172);
context.stroke();

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

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

context.lineTo(341, 142);
context.stroke();

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

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

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

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

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

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

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

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

context.lineTo(362, 172);
context.stroke();

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

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

context.lineTo(388, 244);
context.stroke();

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

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

context.lineTo(409, 282);
context.stroke();

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

context.lineTo(421, 297);
context.stroke();

context.lineTo(426, 301);
context.stroke();

context.lineTo(434, 305);
context.stroke();
</script>
</body>
</html>