<!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.strokeRect(146, 99, 295, 234);

context.strokeStyle = '#FFFFFF';
context.beginPath();
context.moveTo(254, 44);

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

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

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

context.lineTo(258, 56);
context.stroke();

context.lineTo(258, 58);
context.stroke();

context.lineTo(260, 64);
context.stroke();

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

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

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

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

context.lineTo(271, 106);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(294, 172);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(300, 220);
context.stroke();
</script>
</body>
</html>