<!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(39, 45);

context.lineTo(41, 52);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(156, 196);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.strokeStyle = '#000000';
context.strokeRect(113, 46, 269, 154);
</script>
</body>
</html>