<!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(378, 30);

context.lineTo(378, 30);
context.stroke();

context.lineTo(376, 30);
context.stroke();

context.lineTo(372, 32);
context.stroke();

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

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

context.lineTo(333, 49);
context.stroke();

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

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

context.lineTo(300, 61);
context.stroke();

context.lineTo(293, 64);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(291, 266);
context.stroke();

context.lineTo(300, 272);
context.stroke();

context.lineTo(305, 276);
context.stroke();

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

context.lineTo(307, 278);
context.stroke();

context.lineTo(307, 278);
context.stroke();
</script>
</body>
</html>