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

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

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

context.lineTo(76, 54);
context.stroke();

context.lineTo(77, 59);
context.stroke();

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

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

context.lineTo(87, 76);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(239, 237);
context.stroke();

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

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

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

context.lineTo(246, 234);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(248, 85);
context.stroke();

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

context.lineTo(247, 85);
context.stroke();
</script>
</body>
</html>