<!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(113, 63);

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

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

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

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

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

context.lineTo(110, 97);
context.stroke();

context.lineTo(110, 106);
context.stroke();

context.lineTo(110, 113);
context.stroke();

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

context.lineTo(113, 125);
context.stroke();

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

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

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

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

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

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

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

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

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

context.lineTo(166, 199);
context.stroke();

context.lineTo(173, 205);
context.stroke();

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

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

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

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

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

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

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

context.lineTo(297, 199);
context.stroke();

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

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

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

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

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

context.lineTo(335, 163);
context.stroke();

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

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

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

context.lineTo(335, 133);
context.stroke();

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

context.lineTo(328, 124);
context.stroke();

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

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

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

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