What is the status of TTF support in Internet Explorer?

So as I mentioned in my question above, Internet Explorer has some ttf support starting with version 9, but “only working when [fonts are] set to be installable”. Some background: …TrueType fonts have embedding “bits” which allow the creator of the font to decide the level of embedding that will be permitted. There are four … Read more

Changing font-family for placeholder

In case someone want the placeholders selectors for all browsers : .mainLoginInput::-webkit-input-placeholder { font-family: ‘myFont’, Arial, Helvetica, sans-serif; } .mainLoginInput:-ms-input-placeholder { font-family: ‘myFont’, Arial, Helvetica, sans-serif; } .mainLoginInput:-moz-placeholder { font-family: ‘myFont’, Arial, Helvetica, sans-serif; } .mainLoginInput::-moz-placeholder { font-family: ‘myFont’, Arial, Helvetica, sans-serif; }