1@font-face {
2 font-family: CustomFont;
3 src: url('CustomFont.ttf');
4}
5
6@font-face {
7 font-family: CustomFont2;
8 src: url('CustomFont2.ttf');
9}
1@font-face {
2 // Defining what the font will be called
3 font-family: thisSpecialFont;
4 // Linking to the font file
5 src: url(linkToFontFile.woff);
6}
7body {
8 font-family: thisSpecialFont;
9}
1@font-face {
2 font-family: "The name of your font for your file";
3 src: url("The link to your .ttf or .otf file");
4}
1@font-face { font-family: 'meine-schrift';
2 src: url('pfad/zu/meinerschrift.ttf') format('truetype'); }
3
4