<!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(24, 16);

context.lineTo(24, 21);
context.stroke();

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

context.lineTo(24, 26);
context.stroke();

context.lineTo(22, 32);
context.stroke();

context.lineTo(20, 38);
context.stroke();

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

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

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

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

context.lineTo(18, 55);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(70, 22);
context.stroke();

context.lineTo(60, 21);
context.stroke();

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

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

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

context.lineTo(42, 19);
context.stroke();

context.lineTo(41, 19);
context.stroke();

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