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;
} |
Partager