<!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(150, 74);

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

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

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

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

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

context.lineTo(126, 137);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(267, 100);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(201, 165);
context.stroke();
</script>
</body>
</html>