Why does the filltext font look like this?
Code:
/* Área de programación */
$(function(){
var w = window;
var d = document;
var dW = d.body.clientWidth;
var dH = d.body.clientHeight;
console.log(dW);
var c = d.getElementById("can");
var ctx = c.getContext("2d");
/* Dibujando el fondo */
ctx.fillStyle = "#111111";
ctx.fillRect(0,0,dW,dH);
/* Dibujando el título */
ctx.font = "7px monospace";
ctx.fillStyle = "#FFFFFF";
ctx.fillText("Programando en Cosmos Theories !",20,50);
ctx.fill();
});
/* Fin */