<!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(118, 225);

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

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

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

context.lineTo(112, 208);
context.stroke();

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

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

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

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

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

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

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

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

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

context.lineTo(206, 140);
context.stroke();

context.lineTo(212, 140);
context.stroke();

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

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

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

context.lineTo(234, 157);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(332, 208);
context.stroke();

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

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

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

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

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

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

context.lineTo(311, 153);
context.stroke();

context.lineTo(305, 148);
context.stroke();

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

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

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

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