<!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.strokeStyle = '#000000';
context.beginPath();
context.moveTo(118, 102);

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

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

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

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

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

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(103, 136);

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

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

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

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

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

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

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

context.lineTo(147, 158);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(323, 279);
context.stroke();

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

context.lineTo(337, 298);
context.stroke();

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

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

context.lineTo(348, 311);
context.stroke();

context.lineTo(348, 311);
context.stroke();
</script>
</body>
</html>