Use on the webTotal Use [ 4509 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/dcaf774a57b15b5b7392f16963ea2b39?family=CollBesT+Bold" 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/dcaf774a57b15b5b7392f16963ea2b39?family=CollBesT+Bold);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "CollBesT Bold";
src: url("https://db.onlinewebfonts.com/t/dcaf774a57b15b5b7392f16963ea2b39.eot");
src: url("https://db.onlinewebfonts.com/t/dcaf774a57b15b5b7392f16963ea2b39.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/dcaf774a57b15b5b7392f16963ea2b39.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/dcaf774a57b15b5b7392f16963ea2b39.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/dcaf774a57b15b5b7392f16963ea2b39.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/dcaf774a57b15b5b7392f16963ea2b39.svg#CollBesT Bold")format("svg");
}
2CSS rules to specify fonts
font-family: "CollBesT Bold";