<!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(175, 106);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(261, 361);
context.stroke();

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

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

context.lineTo(345, 359);
context.stroke();

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

context.lineTo(381, 343);
context.stroke();

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

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

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

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

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

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

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

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

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

context.lineTo(357, 199);
context.stroke();
</script>
</body>
</html>