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

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

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

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

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

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

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

context.lineTo(210, 119);
context.stroke();

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

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

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

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

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

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

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

context.lineTo(101, 114);
context.stroke();

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

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

context.lineTo(82, 127);
context.stroke();

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

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

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

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

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

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

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

context.lineTo(93, 174);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(252, 163);
context.stroke();
</script>
</body>
</html>