Use on the webTotal Use [ 4569 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/ccd1ea97466f50f37625de81966a565a?family=CollegeFLF-Black.R8" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/ccd1ea97466f50f37625de81966a565a?family=CollegeFLF-Black.R8);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "CollegeFLF-Black.R8";
src: url("https://db.onlinewebfonts.com/t/ccd1ea97466f50f37625de81966a565a.eot");
src: url("https://db.onlinewebfonts.com/t/ccd1ea97466f50f37625de81966a565a.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/ccd1ea97466f50f37625de81966a565a.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/ccd1ea97466f50f37625de81966a565a.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/ccd1ea97466f50f37625de81966a565a.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/ccd1ea97466f50f37625de81966a565a.svg#CollegeFLF-Black.R8")format("svg");
}
2CSS rules to specify fonts
font-family: "CollegeFLF-Black.R8";