<!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(84, 62);

context.lineTo(81, 62);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(137, 89);
context.stroke();
</script>
</body>
</html>