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: "Open Sans";
3 src: url("/fonts/OpenSans-Regular-webfont.woff2") format("woff2"),
4 url("/fonts/OpenSans-Regular-webfont.woff") format("woff");
5}