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