<!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(216, 170);

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

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

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

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

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

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

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

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

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

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

context.lineTo(47, 284);
context.stroke();

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

context.lineTo(19, 261);
context.stroke();

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

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

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

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

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

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

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

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

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

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

context.lineTo(150, 155);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(335, 281);
context.stroke();

context.lineTo(360, 281);
context.stroke();

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

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

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

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

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

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

context.lineTo(465, 224);
context.stroke();
</script>
</body>
</html>