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