Bonjour,

Je cherche à mettre une police spéciale sur mon site, téléchargée sur http://www.fontsquirrel.com/ dans tous les différents formats. Mais je ne comprends pas pourquoi ça ne marche pas. Si quelqu'un pouvait m'aider.. Smiley ohwell


Mon code dans mon css :

@font-face {
font-family: 'ostrich-light';
src: url('ostrich-light-webfont.eot');
src: url('ostrich-light-webfont.eot?#iefix') format('embedded-opentype'),
url('ostrich-light-webfont.woff') format('woff'),
url('ostrich-light-webfont.ttf') format('truetype'),
url('ostrich-light-webfont.svg#sansationbold') format('svg');

}

h1
{
font-family: 'ostrich-light';
}
Oui. Je sais pas ce qui a changé mais c'est bon au final ça marche. Par contre j'ai de nouveau le même problème avec une autre police.

Celle-ci marche :
@font-face { /* Définition d'une nouvelle police nommée ostrich-rounded-webfont */
font-family: 'ostrich-rounded';
src: url('ostrich-rounded-webfont.eot');
src: url('ostrich-rounded-webfont.eot?#iefix') format('embedded-opentype'),
url('ostrich-rounded-webfont.woff') format('woff'),
url('ostrich-rounded-webfont.ttf') format('truetype'),
url('ostrich-rounded-webfont.svg#ostrich-rounded') format('svg');
}

et celle-la non : (je ne vois pas ou est l'erreur)

@font-face { /* Définition d'une nouvelle police nommée black_jack-webfont */
font-family: 'black_jack-webfont';
src: url('black_jack-webfont.eot');
src: url('black_jack-webfont.eot?#iefix') format('embedded-opentype'),
url('black_jack-webfont.woff') format('woff'),
url('black_jack-webfont.ttf') format('truetype'),
url('black_jack-webfont.svg#black_jack') format('svg');
}
C'est bon au final mes deux polices marchent, je n'ai pas trop compris le pourquoi du comment. Merci de ta réponse Smiley smile .