I have a huge problem with webfonts, specifically - Pluto Sanslight, Pluto Sansbold and Pluto Sans Regular. When I install .ttf file in computer, I can write in Lithuanian letters (ą, č, ę, ė, į, š, ų, ū, ž) and everything seems perfect, but when I import fonts on my website with @font-face, all Lithuanian letters are converted to usual font, not Pluto.
There is my code:
@font-face {
font-family: 'pluto_sanslight';
src: url('../fonts/plutosanslight-webfont.eot');
src: url('../fonts/plutosanslight-webfont.eot?#iefix') format('embedded-opentype'),
url('../fonts/plutosanslight-webfont.woff2') format('woff2'),
url('../fonts/plutosanslight-webfont.woff') format('woff'),
url('../fonts/plutosanslight-webfont.ttf') format('truetype'),
url('../fonts/plutosanslight-webfont.svg#pluto_sanslight') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'pluto_sansbold';
src: url('../fonts/plutosansbold-webfont.woff2') format('woff2'),
url('../fonts/plutosansbold-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'pluto_sans_regularregular';
src: url('../fonts/plutosansregular-webfont.eot');
src: url('../fonts/plutosansregular-webfont.eot?#iefix') format('embedded-opentype'),
url('../fonts/plutosansregular-webfont.woff2') format('woff2'),
url('../fonts/plutosansregular-webfont.woff') format('woff'),
url('../fonts/plutosansregular-webfont.ttf') format('truetype'),
url('../fonts/plutosansregular-webfont.svg#pluto_sans_regularregular') format('svg');
font-weight: normal;
font-style: normal;
}
We create strategies, etc.
` Font is here, but not lithuanian letters, as I mention. – Paulius Vitkus Jun 20 '16 at 10:19