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