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