<!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(111, 161);

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(326, 178);
context.stroke();

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

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

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

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

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

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

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

context.lineTo(283, 274);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(132, 262);
context.stroke();

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

context.lineTo(132, 230);
context.stroke();

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

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

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

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

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

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

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

context.lineTo(144, 171);
context.stroke();

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

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

context.lineTo(145, 168);
context.stroke();
</script>
</body>
</html>