Bonjour,
je me permet de contredire l'ami Zeckard.
On peut installer des fonts sur son serveur :
=> font-face Generator
1 2 3 4 5 6 7 8 9 10 11
| /* Declaration correcte d'une font */
@font-face { /* Jokerman */
font-family: 'Jokerman'; /* nom qui sera utilisé pour définir la police dans le CSS */
src: url('../fonts/Jokerman/jokerman-webfont.eot');
src: url('../fonts/Jokerman/jokerman-webfont.eot?#iefix') format('embedded-opentype'),
url('../fonts/Jokerman/jokerman-webfont.woff') format('woff'),
url('../fonts/Jokerman/jokerman-webfont.ttf') format('truetype'),
url('../fonts/Jokerman/jokerman-webfont.svg#Jokerman') format('svg');
font-weight: normal;
font-style: normal;
} |
#blabla { font-family:"Jokerman", Arial, Helvetica, sans-serif; }
Partager