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