<!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(90, 40, 347, 141);

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(45, 89);

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

context.lineTo(44, 98);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(116, 313);
context.stroke();

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

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

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

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

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

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

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

context.lineTo(267, 377);
context.stroke();

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

context.lineTo(304, 374);
context.stroke();

context.lineTo(322, 368);
context.stroke();

context.lineTo(339, 361);
context.stroke();

context.lineTo(353, 354);
context.stroke();

context.lineTo(365, 348);
context.stroke();

context.lineTo(373, 340);
context.stroke();

context.lineTo(377, 334);
context.stroke();

context.lineTo(378, 327);
context.stroke();

context.lineTo(378, 322);
context.stroke();

context.lineTo(378, 320);
context.stroke();

context.lineTo(378, 317);
context.stroke();

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

context.lineTo(378, 314);
context.stroke();

context.lineTo(378, 313);
context.stroke();

context.lineTo(378, 313);
context.stroke();
</script>
</body>
</html>