<!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(170, 105);

context.lineTo(169, 105);
context.stroke();

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

context.lineTo(168, 121);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(281, 355);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(358, 320);
context.stroke();
</script>
</body>
</html>