<!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(70, 113);

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

context.lineTo(71, 118);
context.stroke();

context.lineTo(74, 123);
context.stroke();

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

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

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

context.lineTo(95, 149);
context.stroke();

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

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

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

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

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

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

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(135, 138);

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(212, 104);
context.stroke();

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

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

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

context.lineTo(227, 97);
context.stroke();

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

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

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

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

context.lineTo(235, 93);
context.stroke();
</script>
</body>
</html>