<!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(72, 59);

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

context.lineTo(73, 57);
context.stroke();

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

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

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

context.lineTo(77, 50);
context.stroke();

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

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

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

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

context.lineTo(79, 50);
context.stroke();

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

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

context.lineTo(76, 73);
context.stroke();

context.lineTo(76, 79);
context.stroke();

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

context.lineTo(79, 86);
context.stroke();

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

context.lineTo(80, 89);
context.stroke();

context.lineTo(79, 89);
context.stroke();

context.lineTo(77, 89);
context.stroke();

context.lineTo(73, 89);
context.stroke();

context.lineTo(67, 89);
context.stroke();

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

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

context.lineTo(61, 91);
context.stroke();

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

context.lineTo(68, 91);
context.stroke();

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

context.lineTo(83, 91);
context.stroke();

context.lineTo(87, 91);
context.stroke();

context.lineTo(91, 91);
context.stroke();

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