<!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(35, 248);

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

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

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

context.lineTo(46, 240);
context.stroke();

context.lineTo(53, 235);
context.stroke();

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

context.lineTo(77, 224);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(310, 273);
context.stroke();

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

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

context.lineTo(368, 273);
context.stroke();

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

context.lineTo(431, 260);
context.stroke();

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

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

context.lineTo(503, 225);
context.stroke();

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

context.lineTo(522, 197);
context.stroke();

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

context.lineTo(527, 186);
context.stroke();

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

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

context.lineTo(527, 185);
context.stroke();
</script>
</body>
</html>