<!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(108, 148);

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(185, 187);
context.stroke();

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

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

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

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

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

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

context.lineTo(264, 255);
context.stroke();

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

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

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

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

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

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

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

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

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

context.lineTo(350, 238);
context.stroke();

context.lineTo(351, 218);
context.stroke();

context.lineTo(351, 185);
context.stroke();

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

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

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

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

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

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

context.lineTo(289, 233);
context.stroke();

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

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

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

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

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

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