<!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(211, 221);

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

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

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

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

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

context.lineTo(159, 256);
context.stroke();

context.lineTo(155, 269);
context.stroke();

context.lineTo(155, 280);
context.stroke();

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

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

context.lineTo(207, 310);
context.stroke();

context.lineTo(261, 316);
context.stroke();

context.lineTo(287, 316);
context.stroke();

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

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

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

context.lineTo(359, 269);
context.stroke();

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

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

context.lineTo(346, 224);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.strokeStyle = '#000000';
context.strokeRect(200, 80, 227, 120);
</script>
</body>
</html>