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