<!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(129, 147);

context.lineTo(129, 154);
context.stroke();

context.lineTo(129, 160);
context.stroke();

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

context.lineTo(129, 221);
context.stroke();

context.lineTo(139, 259);
context.stroke();

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

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

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

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

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

context.lineTo(321, 251);
context.stroke();

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

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

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

context.lineTo(314, 220);
context.stroke();

context.lineTo(312, 221);
context.stroke();

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

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

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

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

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

context.lineTo(357, 251);
context.stroke();

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

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

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

context.lineTo(321, 138);
context.stroke();

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

context.lineTo(279, 129);
context.stroke();

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

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

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

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

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

context.lineTo(253, 229);
context.stroke();

context.lineTo(267, 241);
context.stroke();

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

context.lineTo(320, 251);
context.stroke();

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

context.lineTo(377, 245);
context.stroke();

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

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

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

context.lineTo(397, 231);
context.stroke();

context.lineTo(393, 230);
context.stroke();

context.lineTo(391, 230);
context.stroke();

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