Bonjour à tous,

Je viens vers vous, car j'ai un souci avec l'intégration de la police Gotham, voici ma déclaration css
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
@font-face {
    font-family: 'Gotham';
    src: url('fonts/Gotham/Gotham-Book.eot');
    src: local('Gotham-Book'), url('fonts/Gotham/Gotham-Book.otf') format('otf'), url('fonts/Gotham/Gotham-Book.ttf') format('truetype');
    font-weight: normal; /** Gras normal **/
    font-style: normal; /** Style normal **/
}
@font-face {
    font-family: 'GothamMedium';
    src: url('fonts/Gotham/Gotham-Italic.eot');
    src: local('Gotham-Medium'), url('fonts/Gotham/Gotham-Medium.otf') format('otf'), url('fonts/Gotham/Gotham-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'GothamItalic';
    src: url('fonts/Gotham/Gotham-Italic.eot');
    src: local('Gotham-Italic'), url('fonts/Gotham/Gotham-Italic.otf') format('otf'), url('fonts/Gotham/Gotham-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}
@font-face {
    font-family: 'GothamBold';
    src: url('fonts/Gotham/Gotham-Bold.eot');
    src: local('Gotham-Bold'), url('fonts/Gotham/Gotham-Bold.otf') format('otf'), url('fonts/Gotham/Gotham-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}
Ceci fonctionne en tout cas sous Firefox, chrome et Safari, mais pas sous IE 11

Quelqu'un aurait une solution ?
Ou bien ai-je fait une erreur dans ma déclaration ?

En vous remerciant d'avance

Bien à vous
Spliffer